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