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

master
Alexey Kudravtsev 6 years ago
parent 730bf5dfcd
commit 3b6cb5a931
  1. 4
      src/org/jetbrains/java/decompiler/code/SimpleInstructionSequence.java
  2. 4
      src/org/jetbrains/java/decompiler/modules/decompiler/ExprentStack.java

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

@ -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);

Loading…
Cancel
Save