From 269aed29b23a917e4573945a266a284b16eecdc3 Mon Sep 17 00:00:00 2001 From: Konloch Date: Sun, 29 Sep 2024 08:58:19 -0600 Subject: [PATCH] Cleanup --- .../bytecode/club/bytecodeviewer/plugin/PluginTemplate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/plugin/PluginTemplate.java b/src/main/java/the/bytecode/club/bytecodeviewer/plugin/PluginTemplate.java index 9653a9bd..ca13e14b 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/plugin/PluginTemplate.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/plugin/PluginTemplate.java @@ -30,8 +30,8 @@ import java.io.IOException; */ public enum PluginTemplate { - JAVA("/templates/Template_Plugin.java"), JAVASCRIPT("/templates/Template_Plugin.js"), - ; + JAVA("/templates/Template_Plugin.java"), + JAVASCRIPT("/templates/Template_Plugin.js"); private final String resourcePath; private final String extension;