Remove unneeded/unused getFormat() method in UnresolvedOdexInstruction

This commit is contained in:
Ben Gruver 2013-04-09 23:43:02 -07:00
parent 45dfbd6d58
commit 2887ade533

View File

@ -31,7 +31,6 @@
package org.jf.dexlib2.analysis;
import org.jf.dexlib2.Format;
import org.jf.dexlib2.Opcode;
import org.jf.dexlib2.iface.instruction.Instruction;
@ -50,10 +49,6 @@ public class UnresolvedOdexInstruction implements Instruction {
this.objectRegisterNum = objectRegisterNumber;
}
public Format getFormat() {
return Format.UnresolvedOdexInstruction;
}
@Override public Opcode getOpcode() {
return originalInstruction.getOpcode();
}