From fdcd49883b65417ec2d3c1ec6796bbae38d3c636 Mon Sep 17 00:00:00 2001 From: Konloch Date: Tue, 29 Jun 2021 08:17:42 -0700 Subject: [PATCH] Cleanup --- README.md | 1 + .../java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49a1e8bc..dcaa4a2e 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Bytecode Viewer - a lightweight user friendly Java Bytecode Viewer. #### New Features +* Translation Process Started * Dark Mode * Updated nearly all dependencies (incl. decompilers like CFR, JD-GUI etc.) * Updated ASM library to version 9.1 diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java index ba677c4a..c62924d5 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/BytecodeViewer.java @@ -109,7 +109,7 @@ public class BytecodeViewer public static String[] args; public static MainViewerGUI viewer = null; public static ClassNodeLoader loader = new ClassNodeLoader(); //might be insecure due to assholes targeting BCV, - public static SecurityMan sm = new SecurityMan(); //might be insecure due to assholes targeting BCV, however + public static SecurityMan sm = new SecurityMan(); //might be insecure due to assholes targeting BCV, public static Refactorer refactorer = new Refactorer(); public static List files = new ArrayList<>(); //all of BCV's loaded files/classes/etc public static List createdProcesses = new ArrayList<>();