Change Opcode.getOpcodeByValue to accept an int

This commit is contained in:
Ben Gruver 2012-10-17 18:34:38 -07:00
parent b5e40f2abd
commit d4866dd875

View File

@ -328,7 +328,7 @@ public enum Opcode
return opcodesByName.get(opcodeName.toLowerCase().hashCode());
}
public static Opcode getOpcodeByValue(short opcodeValue) {
public static Opcode getOpcodeByValue(int opcodeValue) {
return opcodesByValue[opcodeValue];
}