Remove debug

This commit is contained in:
Brianna 2019-08-08 21:00:23 -04:00
parent e3f6131bfd
commit 06d7664306

View File

@ -95,7 +95,6 @@ public class DataManager {
ResultSet result = statement.executeQuery(selectSpawners);
while (result.next()) {
int spawnerId = result.getInt("id");
System.out.println(result.getRow());
int amount = result.getInt("amount");
@ -109,7 +108,6 @@ public class DataManager {
spawnerStack.setId(spawnerId);
spawners.put(location, spawnerStack);
}
System.out.println("loaded " + spawners.size());
} catch (Exception e) {
e.printStackTrace();
}