mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
284 B
Java
10 lines
284 B
Java
public class Bar {
|
|
public int baz(byte blah) {
|
|
return <selection>blah + 3</selection>;
|
|
}
|
|
}
|
|
class S extends Bar {
|
|
public int baz(byte blah) {
|
|
return super.baz((byte) 0); //To change body of overridden methods use File | Settings | File Templates.
|
|
}
|
|
} |