mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
202 B
Java
16 lines
202 B
Java
class Test {
|
|
public void method2() {
|
|
if (true) {
|
|
newMethod();
|
|
|
|
|
|
} else {
|
|
|
|
}
|
|
}
|
|
|
|
private void newMethod() {
|
|
// add to list2
|
|
list2.add(true);
|
|
}
|
|
} |