From adb0ed40fecab0e37350440b31b38e4922d49a09 Mon Sep 17 00:00:00 2001 From: GameCubeGBA <95232096+GameCubeGBA@users.noreply.github.com> Date: Tue, 14 Dec 2021 14:29:31 -0500 Subject: [PATCH] Remove unused stray String Considering this is not a test method, there is no reason why String s = "abc" should be here, considering it is not even used. This was likely added by mistake. --- .../Base/src/main/java/ghidra/util/GhidraJarBuilder.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Ghidra/Features/Base/src/main/java/ghidra/util/GhidraJarBuilder.java b/Ghidra/Features/Base/src/main/java/ghidra/util/GhidraJarBuilder.java index b2d66b414c..155f508775 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/util/GhidraJarBuilder.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/util/GhidraJarBuilder.java @@ -663,9 +663,6 @@ public class GhidraJarBuilder implements GhidraLaunchable { } public void writeExtensionPointClassFile() throws IOException { - String s = "abc"; - s.getBytes(); - ZipEntry entry = new ZipEntry(ROOT_GHIDRA + "EXTENSION_POINT_CLASSES"); try {