mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
- update copyright - fix problems with annotations - fix tests - disable loading environment for tests and prod - disable `private class` until next fixes GitOrigin-RevId: d0d7177af604f787bf1c7114393f5cadb5197cc8
19 lines
305 B
Java
19 lines
305 B
Java
public class y<P> {
|
|
private P a;
|
|
private Class<P> b;
|
|
private boolean c;
|
|
public static int d;
|
|
|
|
private y(Class<P> var1) {
|
|
this.b = var1;
|
|
}
|
|
|
|
public static <P> y<P> a(Class<P> var0) {
|
|
return new y<P>(var0);
|
|
}
|
|
|
|
public P a() {
|
|
// $FF: Couldn't be decompiled
|
|
}
|
|
}
|