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