]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.maps.elevation.server/src/org/simantics/maps/elevation/server/TiffTileInterface.java
Fixed most warnings from district codebase after JavaSE-11 switch
[simantics/district.git] / org.simantics.maps.elevation.server / src / org / simantics / maps / elevation / server / TiffTileInterface.java
index f688024b0d078ef8250593a2878202eaa1dc6cef..6cc9cd7b79e0c544f01f14f02c7c23563ef50927 100644 (file)
@@ -111,13 +111,14 @@ public class TiffTileInterface implements Closeable {
         try {
             c4326 = CRS.decode("EPSG:4326");
         } catch (Exception e) {
-            LOGGER.error("Could not initialize epsg:4326", e);
+            LOGGER.error("Could not initialize EPSG:4326", e);
         }
     }
 
     public Number lookup(double x, double y) {
         LOGGER.trace("Looking up x={} y={}", x, y);
         DirectPosition p = new DirectPosition2D(c4326, x, y);
+        @SuppressWarnings("unchecked")
         List<Path> tifFiles = (List<Path>) index.query(new Envelope(new Coordinate(x, y)));
         for (Path tifFile : tifFiles) {
             TiffInterface tifInterface = openTifInterface(tifFile);
@@ -128,10 +129,10 @@ public class TiffTileInterface implements Closeable {
                     tifInterface.close();
                 }
             } else {
-                System.out.println("not found");
+                //System.out.println("not found");
             }
         }
-        return new Double(0); // use 0 by default for now
+        return Double.valueOf(0); // use 0 by default for now
     }
 
     @Override