mirror of
https://github.com/revanced/smali.git
synced 2025-05-24 02:22:20 +02:00
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:
parent
97da4a7699
commit
af88d65aac
@ -105,7 +105,7 @@ public class ArrayEncodedSubValue extends EncodedValue {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (int i=0; i<values.length; i++) {
|
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) {
|
if (comp != 0) {
|
||||||
return comp;
|
return comp;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user