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:
JesusFreke@JesusFreke.com 2009-12-23 05:27:36 +00:00
parent 526d617e05
commit 91aa1ef2fa

View File

@ -107,7 +107,7 @@ public class SparseSwitchDataPseudoInstruction extends Instruction implements Mu
for (int i = 1; i < keys.length; i++) {
key = keys[i];
assert key <= keys[i - 1];
assert key >= keys[i - 1];
out.writeInt(key);
}