mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
225 B
Java
15 lines
225 B
Java
|
|
public class TestClass {
|
|
|
|
public void test() {
|
|
if (true) {
|
|
System.out.println();
|
|
}
|
|
<caret>else if (true) {
|
|
System.out.println();
|
|
}
|
|
else {
|
|
|
|
}
|
|
}
|
|
} |