mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 7282f25d9aa56643b42f1ef6a279dd1a7bf53a09
19 lines
312 B
Java
19 lines
312 B
Java
class Test{
|
|
public void foo() {
|
|
if (cond1){
|
|
if (newMethod()) return;
|
|
}
|
|
else if (cond3){
|
|
}
|
|
x();
|
|
}
|
|
|
|
private boolean newMethod() {
|
|
if (cond2) {
|
|
System.out.println();
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|