mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moving tests to CE
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
class B {
|
||||
@NotNull
|
||||
B b;
|
||||
|
||||
public B getB() {
|
||||
return b;
|
||||
}
|
||||
|
||||
public void setB(B b) {
|
||||
this.b = b;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private String bug = "true";
|
||||
|
||||
public boolean getBug() {
|
||||
return Boolean.valueOf(bug);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user