mirror of
https://github.com/revanced/smali.git
synced 2025-05-02 23:54:38 +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) {
|
||||
int res = getReturnType().compareTo(o.getReturnType());
|
||||
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