mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
19 lines
350 B
Java
19 lines
350 B
Java
public class MyClass {
|
|
public void test() {
|
|
if (new In<caret>ner().isWriteReplace()) {
|
|
return new Inner().writeReplace();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private class Inner {
|
|
public boolean isWriteReplace() {
|
|
return false;
|
|
}
|
|
|
|
public boolean writeReplace() {
|
|
return false;
|
|
}
|
|
}
|
|
}
|