mine audit

This commit is contained in:
2024-04-18 20:32:29 -05:00
parent 86d0254c2f
commit 95b23a35fc
-15
View File
@@ -66,21 +66,6 @@ public class dbMineHandler extends dbHandlerBase {
Logger.error(e);
}
try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM obj_mine;")) {
ResultSet rs = preparedStatement.executeQuery();
int count = 0;
while(rs.next()){
count++;
}
if(count == 33){
int poop = 100;
}
} catch (SQLException e) {
Logger.error(e);
}
return mines;
}