mirror of
https://github.com/revanced/smali.git
synced 2025-05-24 10:32:13 +02:00
Change Opcode.getOpcodeByValue to accept an int
This commit is contained in:
parent
b5e40f2abd
commit
d4866dd875
@ -328,7 +328,7 @@ public enum Opcode
|
|||||||
return opcodesByName.get(opcodeName.toLowerCase().hashCode());
|
return opcodesByName.get(opcodeName.toLowerCase().hashCode());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Opcode getOpcodeByValue(short opcodeValue) {
|
public static Opcode getOpcodeByValue(int opcodeValue) {
|
||||||
return opcodesByValue[opcodeValue];
|
return opcodesByValue[opcodeValue];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user