mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 23:21:09 +07:00
postpone search for overriding methods until usages in current method is checked GitOrigin-RevId: 1a68af844d1b590203f42a322812b0b065124f5d
11 lines
336 B
Java
11 lines
336 B
Java
public class Bar {
|
|
public int baz(byte blah1, int anObject) {
|
|
return anObject;
|
|
}
|
|
}
|
|
class S extends Bar {
|
|
public int baz(byte blah1, int anObject) {
|
|
System.out.println(blah1);
|
|
return super.baz((byte) 0, anObject); //To change body of overridden methods use File | Settings | File Templates.
|
|
}
|
|
} |