Visibility promotion for a data class

This commit is contained in:
2023-09-17 12:53:56 -04:00
parent 83be09d643
commit 3fb08ca2c3
5 changed files with 17 additions and 37 deletions
@@ -29,8 +29,8 @@ public class dbHeightMapHandler extends dbHandlerBase {
while (rs.next()) {
thisHeightmap = new HeightMap(rs);
if (thisHeightmap.getHeightmapImage() == null) {
Logger.info("Imagemap for " + thisHeightmap.getHeightMapID() + " was null");
if (thisHeightmap.heightmapImage == null) {
Logger.info("Imagemap for " + thisHeightmap.heightMapID + " was null");
continue;
}
}