mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
234 B
Java
12 lines
234 B
Java
class A {
|
|
int foo (Object o) {
|
|
if (newMethod(o)) return 0;
|
|
if (newMethod(o)) return 0;
|
|
return 1;
|
|
}
|
|
|
|
private boolean newMethod(Object o) {
|
|
if (o == null) return true;
|
|
return false;
|
|
}
|
|
} |