mirror of
https://github.com/revanced/smali.git
synced 2025-05-03 08:04:28 +02:00
Fix how proto id items are sorted
This commit is contained in:
parent
0843bbe9c6
commit
8045a499ff
@ -168,7 +168,7 @@ public class ProtoPool {
|
|||||||
public int compareTo(@Nonnull Key o) {
|
public int compareTo(@Nonnull Key o) {
|
||||||
int res = getReturnType().compareTo(o.getReturnType());
|
int res = getReturnType().compareTo(o.getReturnType());
|
||||||
if (res != 0) return res;
|
if (res != 0) return res;
|
||||||
return CollectionUtils.compareAsList(getParameters(), o.getParameters());
|
return CollectionUtils.compareAsIterable(getParameters(), o.getParameters());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user