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

This commit is contained in:
Alexey Kudravtsev
2018-01-18 16:28:43 +03:00
parent 730bf5dfcd
commit 3b6cb5a931
2 changed files with 0 additions and 8 deletions
@@ -18,8 +18,4 @@ public class SimpleInstructionSequence extends InstructionSequence {
return newseq; return newseq;
} }
public void removeInstruction(int index) {
collinstr.remove(index);
}
} }
@@ -14,10 +14,6 @@ public class ExprentStack extends ListStack<Exprent> {
pointer = list.getPointer(); pointer = list.getPointer();
} }
public void push(Exprent item) {
super.push(item);
}
public Exprent pop() { public Exprent pop() {
return this.remove(--pointer); return this.remove(--pointer);