mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
16 lines
372 B
Java
16 lines
372 B
Java
// "Create method 'someMethod'" "true-preview"
|
|
public class Test {
|
|
|
|
public Object get() {
|
|
return new Object() {
|
|
public boolean equals(Object obj) {
|
|
return someMethod(this);
|
|
}
|
|
|
|
private boolean someMethod(Object o) {
|
|
<caret><selection>return false;</selection>
|
|
}
|
|
};
|
|
}
|
|
}
|