mirror of
https://github.com/revanced/smali.git
synced 2025-05-29 12:20:11 +02:00
Use the correct comparison for the keys, when writing out a sparse switch data pseudo-instruction
git-svn-id: https://smali.googlecode.com/svn/trunk@507 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
526d617e05
commit
91aa1ef2fa
@ -107,7 +107,7 @@ public class SparseSwitchDataPseudoInstruction extends Instruction implements Mu
|
|||||||
|
|
||||||
for (int i = 1; i < keys.length; i++) {
|
for (int i = 1; i < keys.length; i++) {
|
||||||
key = keys[i];
|
key = keys[i];
|
||||||
assert key <= keys[i - 1];
|
assert key >= keys[i - 1];
|
||||||
out.writeInt(key);
|
out.writeInt(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user