Skip to content

Commit

Permalink
remove player uuid log on load
Browse files Browse the repository at this point in the history
Took 2 minutes
  • Loading branch information
kiranhart committed Jun 17, 2022
1 parent 858753c commit fbf8eea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/ca/tweetzy/skulls/database/DataManager.java
Expand Up @@ -221,7 +221,6 @@ public void getPlayers(Callback<ArrayList<SkullUser>> callback) {
try (PreparedStatement statement = connection.prepareStatement("SELECT * FROM " + this.getTablePrefix() + "players")) {
ResultSet resultSet = statement.executeQuery();
while (resultSet.next()) {
Common.log(resultSet.getString("uuid"));
skulls.add(extractSkullPlayer(resultSet));
}

Expand Down

0 comments on commit fbf8eea

Please sign in to comment.