mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
297 B
Java
16 lines
297 B
Java
class Test {
|
|
int method() {
|
|
return newMethod();
|
|
return 12;
|
|
}
|
|
|
|
private int newMethod() {
|
|
try {
|
|
if(cond1) return 0;
|
|
else if(cond2) return 1;
|
|
return 27;
|
|
} finally {
|
|
doSomething();
|
|
}
|
|
}
|
|
} |