61 lines
2.8 KiB
Diff
61 lines
2.8 KiB
Diff
diff --git a/runtime-decompiler/pom.xml b/runtime-decompiler/pom.xml
|
|
index 26a416e..e6e2425 100644
|
|
--- a/runtime-decompiler/pom.xml
|
|
+++ b/runtime-decompiler/pom.xml
|
|
@@ -100,11 +100,11 @@
|
|
<scope>system</scope>
|
|
<systemPath>${java.home}/../lib/tools.jar</systemPath>
|
|
</dependency>
|
|
- <dependency>
|
|
+<!-- <dependency>
|
|
<groupId>com.fifesoft</groupId>
|
|
<artifactId>rsyntaxtextarea</artifactId>
|
|
<version>2.6.1</version>
|
|
- </dependency>
|
|
+ </dependency>-->
|
|
<dependency>
|
|
<groupId>org.jboss.byteman</groupId>
|
|
<artifactId>byteman-install</artifactId>
|
|
diff --git a/runtime-decompiler/src/main/java/org/jrd/frontend/BytecodeDecompilerView.java b/runtime-decompiler/src/main/java/org/jrd/frontend/BytecodeDecompilerView.java
|
|
index 9c19e2c..8d17775 100644
|
|
--- a/runtime-decompiler/src/main/java/org/jrd/frontend/BytecodeDecompilerView.java
|
|
+++ b/runtime-decompiler/src/main/java/org/jrd/frontend/BytecodeDecompilerView.java
|
|
@@ -2,9 +2,9 @@ package org.jrd.frontend.MainFrame;
|
|
|
|
import org.jrd.backend.core.OutputController;
|
|
import org.jrd.backend.decompiling.DecompilerWrapperInformation;
|
|
-import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;
|
|
-import org.fife.ui.rsyntaxtextarea.SyntaxConstants;
|
|
-import org.fife.ui.rtextarea.RTextScrollPane;
|
|
+//import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea;
|
|
+//import org.fife.ui.rsyntaxtextarea.SyntaxConstants;
|
|
+//import org.fife.ui.rtextarea.RTextScrollPane;
|
|
|
|
import javax.swing.*;
|
|
import javax.swing.border.EtchedBorder;
|
|
@@ -30,8 +30,8 @@ public class BytecodeDecompilerView {
|
|
private JPanel rightMainPanel;
|
|
private JScrollPane leftScrollPanel;
|
|
private JList<String> filteredClassesJlist;
|
|
- private RTextScrollPane bytecodeScrollPane;
|
|
- private RSyntaxTextArea bytecodeSyntaxTextArea;
|
|
+ private JScrollPane bytecodeScrollPane;
|
|
+ private JTextArea bytecodeSyntaxTextArea;
|
|
private ActionListener bytesActionListener;
|
|
private ActionListener classesActionListener;
|
|
private String[] classes;
|
|
@@ -120,10 +120,10 @@ public class BytecodeDecompilerView {
|
|
|
|
topComboBox = new JComboBox<DecompilerWrapperInformation>();
|
|
|
|
- bytecodeSyntaxTextArea = new RSyntaxTextArea();
|
|
- bytecodeSyntaxTextArea.setSyntaxEditingStyle(SyntaxConstants.SYNTAX_STYLE_JAVA);
|
|
- bytecodeSyntaxTextArea.setCodeFoldingEnabled(true);
|
|
- bytecodeScrollPane = new RTextScrollPane(bytecodeSyntaxTextArea);
|
|
+ bytecodeSyntaxTextArea = new JTextArea();
|
|
+ //bytecodeSyntaxTextArea.setSyntaxEditingStyle(SyntaxConstants.SYNTAX_STYLE_JAVA);
|
|
+ //bytecodeSyntaxTextArea.setCodeFoldingEnabled(true);
|
|
+ bytecodeScrollPane = new JScrollPane(bytecodeSyntaxTextArea);
|
|
|
|
leftMainPanel = new JPanel();
|
|
leftMainPanel.setLayout(new BorderLayout());
|