Skip to content

Commit f35fcf0

Browse files
committed
Convert BY_NAME to LinkedHashMap (#24)
1 parent 4705c18 commit f35fcf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/the/bytecode/club/jda/decompilers/Decompilers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
import java.util.Collection;
66
import java.util.Collections;
7-
import java.util.HashMap;
7+
import java.util.LinkedHashMap;
88
import java.util.Map;
99

1010
public class Decompilers {
11-
static final Map<String, Decompiler> BY_NAME = new HashMap<>();
11+
static final Map<String, Decompiler> BY_NAME = new LinkedHashMap<>();
1212

1313
public final static Decompiler PROCYON = new ProcyonDecompiler();
1414
public final static Decompiler CFR = new CFRDecompiler();

0 commit comments

Comments
 (0)