Compare values using compareTo, not compareValue

git-svn-id: https://smali.googlecode.com/svn/trunk@420 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-08-26 02:38:23 +00:00
parent 97da4a7699
commit af88d65aac

View File

@ -105,7 +105,7 @@ public class ArrayEncodedSubValue extends EncodedValue {
}
for (int i=0; i<values.length; i++) {
comp = values[i].compareValue(other.values[i]);
comp = values[i].compareTo(other.values[i]);
if (comp != 0) {
return comp;
}