mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 14:09:12 +07:00
14 lines
237 B
Java
14 lines
237 B
Java
class Foo {
|
|
void test() {
|
|
int a = 2;
|
|
int b = 2;
|
|
|
|
<selection>if (a == b){
|
|
if (a > b){
|
|
System.out.println();
|
|
}
|
|
}</selection>
|
|
|
|
System.out.println();
|
|
}
|
|
} |