From 9c7a5c8016598d4dd9346ffafb16afe64540739d Mon Sep 17 00:00:00 2001 From: Pyrbu Date: Wed, 1 Nov 2023 00:56:10 +0100 Subject: [PATCH] remove debug --- plugin/src/main/java/lol/pyr/znpcsplus/ZNpcsPlusBootstrap.java | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin/src/main/java/lol/pyr/znpcsplus/ZNpcsPlusBootstrap.java b/plugin/src/main/java/lol/pyr/znpcsplus/ZNpcsPlusBootstrap.java index 3bfde9e..45e9eb9 100644 --- a/plugin/src/main/java/lol/pyr/znpcsplus/ZNpcsPlusBootstrap.java +++ b/plugin/src/main/java/lol/pyr/znpcsplus/ZNpcsPlusBootstrap.java @@ -86,7 +86,6 @@ public class ZNpcsPlusBootstrap extends JavaPlugin { Reader reader = getTextResource("messages/" + file + ".txt"); if (reader == null) throw new RuntimeException(file + ".txt is missing from ZNPCsPlus jar!"); String text = FileUtil.dumpReaderAsString(reader); - System.out.println(text); Matcher matcher = EMBEDDED_FILE_PATTERN.matcher(text); StringBuilder builder = new StringBuilder(); int lastMatchEnd = 0;