mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
more java tests moved to community
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Invert If Condition" "true"
|
||||
// else on the same line
|
||||
class TestInvertIf {
|
||||
void invertIf(Object object) {
|
||||
if (object != "adf") {
|
||||
System.out.println("1");
|
||||
} // comment
|
||||
else {
|
||||
System.out.println("2");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user