mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
17 lines
249 B
Java
17 lines
249 B
Java
class Test {
|
|
|
|
public void test(boolean b) {
|
|
int a = 1;
|
|
if (true) {
|
|
newMethod(a);
|
|
} else {
|
|
newMethod(a);
|
|
}
|
|
}
|
|
|
|
private void newMethod(int a) {
|
|
System.out.println(a);
|
|
}
|
|
|
|
|
|
} |