zone loading

This commit is contained in:
2024-04-30 20:03:22 -05:00
parent a4a375e13b
commit d0b716eb41
2 changed files with 3 additions and 7 deletions
@@ -84,13 +84,6 @@ public class dbZoneHandler extends dbHandlerBase {
ResultSet rs = preparedStatement.executeQuery();
zoneList = getObjectsFromRs(rs, 2000);
zoneList.clear();
while(rs.next()){
if(rs.getInt("canLoad") == 1)
zoneList.add(new Zone(rs));
}
} catch (SQLException e) {
Logger.error(e);
}