refactor: remove debug statements

This commit is contained in:
aro 2023-01-20 16:53:35 +01:00
parent 42ba20cc1a
commit f7a9689ee2

View file

@ -12,9 +12,6 @@ public class InternalsProvider {
final String packageName = Internals.class.getPackage().getName();
final String bukkitVersion = Bukkit.getServer().getClass().getPackage().getName().split("\\.")[3];
final String fullClassName = packageName + "." + bukkitVersion;
System.out.println("[DEBUG] packageName = " + packageName);
System.out.println("[DEBUG] bukkitVersion = " + bukkitVersion);
System.out.println("[DEBUG] Searching for " + fullClassName + "...");
internals = (Internals) Class.forName(fullClassName).getConstructors()[0].newInstance();
} catch (InvocationTargetException | ClassNotFoundException | InstantiationException | IllegalAccessException |
ClassCastException exception) {