removed redundant method overriders after "Method is identical to its supermethod" inspection run

This commit is contained in:
Alexey Kudravtsev
2018-01-18 14:34:14 +03:00
parent 730bf5dfcd
commit 3b6cb5a931
2 changed files with 0 additions and 8 deletions

View File

@@ -18,8 +18,4 @@ public class SimpleInstructionSequence extends InstructionSequence {
return newseq;
}
public void removeInstruction(int index) {
collinstr.remove(index);
}
}

View File

@@ -14,10 +14,6 @@ public class ExprentStack extends ListStack<Exprent> {
pointer = list.getPointer();
}
public void push(Exprent item) {
super.push(item);
}
public Exprent pop() {
return this.remove(--pointer);