Commit 57e6f308 authored by tonymanou's avatar tonymanou Committed by topjohnwu

Fix generic type

parent 89744100
......@@ -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<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment