mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-10-27 11:23:25 +00:00
Fix generic type
This commit is contained in:
@@ -168,7 +168,7 @@ public class ModuleHelper {
|
||||
}
|
||||
}
|
||||
|
||||
private static class ValueSortedMap<K, V extends Comparable > extends HashMap<K, V> {
|
||||
private static class ValueSortedMap<K, V extends Comparable<? super V>> extends HashMap<K, V> {
|
||||
|
||||
private List<V> sorted = new ArrayList<>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user