Skip to content

Commit bc24ae7

Browse files
committed
HashMap -> LinkedHashMap
1 parent 3a3b150 commit bc24ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loader/src/main/java/com/fox2code/foxloader/launcher/FoxClassLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ public static abstract class WrappedExtensions {
636636
public abstract void info(String message);
637637
}
638638

639-
private static final class NullCheckedHashMap<K, V> extends HashMap<K, V> {
639+
private static final class NullCheckedHashMap<K, V> extends LinkedHashMap<K, V> {
640640
@Override
641641
public V put(@NotNull K key,@NotNull V value) {
642642
Objects.requireNonNull(key);

0 commit comments

Comments
 (0)