blob: 1678a904987dcd8de292287f883b923e54c536e5 [file] [log] [blame]
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;
}
}