"create method from usage" qualifies reference when creating method with the same...
[fedora-idea.git] / testData / refactoring / introduceParameter / afterRemoveParameterInHierarchy.java
blobb36c26f1d237cff2a0fe175107aa9d6f2cdf9c2d
1 public class Bar {
2 public int baz(int anObject) {
3 return anObject;
6 class S extends Bar {
7 public int baz(int anObject) {
8 return super.baz((byte) 0 + 3); //To change body of overridden methods use File | Settings | File Templates.