mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
280 B
Java
12 lines
280 B
Java
class Test {
|
|
int method() {
|
|
<selection>try {
|
|
if(cond1) return 0;
|
|
else if(cond2) return 1;
|
|
System.out.println("Text");
|
|
} finally {
|
|
doSomething();
|
|
}</selection>
|
|
return 12;
|
|
}
|
|
} |