From 2887ade533a9624bdc4fe2be0755fba1b7f4f03a Mon Sep 17 00:00:00 2001 From: Ben Gruver Date: Tue, 9 Apr 2013 23:43:02 -0700 Subject: [PATCH] Remove unneeded/unused getFormat() method in UnresolvedOdexInstruction --- .../org/jf/dexlib2/analysis/UnresolvedOdexInstruction.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dexlib2/src/main/java/org/jf/dexlib2/analysis/UnresolvedOdexInstruction.java b/dexlib2/src/main/java/org/jf/dexlib2/analysis/UnresolvedOdexInstruction.java index 2df9b858..fb201b01 100644 --- a/dexlib2/src/main/java/org/jf/dexlib2/analysis/UnresolvedOdexInstruction.java +++ b/dexlib2/src/main/java/org/jf/dexlib2/analysis/UnresolvedOdexInstruction.java @@ -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(); }