mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 06:01:00 +07:00
Fixed tests GitOrigin-RevId: 038d0b6004f90b8a7cac231a83ba4cc883f2fa8a
15 lines
248 B
Java
15 lines
248 B
Java
|
|
public class TestClass {
|
|
|
|
public void test() {
|
|
if (true) {
|
|
System.out.println();
|
|
}
|
|
<selection><caret>else</selection> if (true) {
|
|
System.out.println();
|
|
}
|
|
else {
|
|
|
|
}
|
|
}
|
|
} |