mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
14 lines
246 B
Java
14 lines
246 B
Java
class Test{
|
|
public void foo() {
|
|
if (cond1){
|
|
<selection>if (cond2) {
|
|
System.out.println();
|
|
return;
|
|
}</selection>
|
|
}
|
|
else if (cond3){
|
|
}
|
|
x();
|
|
}
|
|
}
|