Refactor to remove abstraction.

This commit is contained in:
2023-05-21 15:28:50 -04:00
parent f299fcaffc
commit 0924fa2bdb
3 changed files with 88 additions and 26 deletions
@@ -96,7 +96,7 @@ public class dbBuildingHandler extends dbHandlerBase {
preparedStatement.setLong(1, zone.getObjectUUID());
ResultSet rs = preparedStatement.executeQuery();
buildings = getObjectsFromRs(rs, 2000);
buildings = getObjectsFromRs(rs, 1000);
} catch (SQLException e) {
Logger.error(e);