mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
16 lines
257 B
Java
16 lines
257 B
Java
class A {
|
|
void foo(final Object arg) {
|
|
new Object() {
|
|
void foo() {
|
|
if (arg instanceof Number) {
|
|
return;
|
|
}
|
|
}
|
|
void foo1() {
|
|
if (arg instanceof Number) {
|
|
return;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
} |