Skip to content

Commit a81ca87

Browse files
author
afffsdd
committed
Make Fernflower the default decompiler
1 parent 18e3c91 commit a81ca87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/the/bytecode/club/bytecodeviewer/gui/MainViewerGUI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ public String getDescription() {
792792
int result = -1;
793793
for (int k = 0; k < options.length; k++)
794794
if (options[k].equals(obj)) result = k;
795-
String containerName = BytecodeViewer.files.get(0).name;
795+
final String containerName = BytecodeViewer.files.get(0).name;
796796

797797
if (result == 0) {
798798
Thread t = new Thread() {
@@ -1245,7 +1245,7 @@ public void itemStateChanged(ItemEvent e) {
12451245
}
12461246
}
12471247
});
1248-
panelGroup1.setSelected(allDecompilersRev.get(panelGroup1).get(Decompiler.JDGUI).getModel(), true);
1248+
panelGroup1.setSelected(allDecompilersRev.get(panelGroup1).get(Decompiler.FERNFLOWER).getModel(), true);
12491249
panelGroup2.setSelected(allDecompilersRev.get(panelGroup2).get(Decompiler.BYTECODE).getModel(), true);
12501250
panelGroup3.setSelected(allDecompilersRev.get(panelGroup3).get(null).getModel(), true);
12511251
this.setLocationRelativeTo(null);

0 commit comments

Comments
 (0)