remove debug

This commit is contained in:
Pyrbu 2023-11-01 00:56:10 +01:00
parent 5ef94c09a4
commit 9c7a5c8016

@ -86,7 +86,6 @@ public class ZNpcsPlusBootstrap extends JavaPlugin {
Reader reader = getTextResource("messages/" + file + ".txt"); Reader reader = getTextResource("messages/" + file + ".txt");
if (reader == null) throw new RuntimeException(file + ".txt is missing from ZNPCsPlus jar!"); if (reader == null) throw new RuntimeException(file + ".txt is missing from ZNPCsPlus jar!");
String text = FileUtil.dumpReaderAsString(reader); String text = FileUtil.dumpReaderAsString(reader);
System.out.println(text);
Matcher matcher = EMBEDDED_FILE_PATTERN.matcher(text); Matcher matcher = EMBEDDED_FILE_PATTERN.matcher(text);
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
int lastMatchEnd = 0; int lastMatchEnd = 0;