< prev index next >

src/java.desktop/share/classes/javax/imageio/plugins/tiff/GeoTIFFTagSet.java

Print this page

        

@@ -85,13 +85,13 @@
                   TAG_MODEL_TRANSFORMATION,
                   1 << TIFFTag.TIFF_DOUBLE);
         }
     }
 
-    static class ModelTiePoint extends TIFFTag {
-        public ModelTiePoint() {
-            super("ModelTiePointTag",
+    static class ModelTiepoint extends TIFFTag {
+        public ModelTiepoint() {
+            super("ModelTiepointTag",
                   TAG_MODEL_TIE_POINT,
                   1 << TIFFTag.TIFF_DOUBLE);
         }
     }
 

@@ -124,11 +124,11 @@
     private static void initTags() {
         tags = new ArrayList<TIFFTag>(42);
 
         tags.add(new GeoTIFFTagSet.ModelPixelScale());
         tags.add(new GeoTIFFTagSet.ModelTransformation());
-        tags.add(new GeoTIFFTagSet.ModelTiePoint());
+        tags.add(new GeoTIFFTagSet.ModelTiepoint());
         tags.add(new GeoTIFFTagSet.GeoKeyDirectory());
         tags.add(new GeoTIFFTagSet.GeoDoubleParams());
         tags.add(new GeoTIFFTagSet.GeoAsciiParams());
     }
 
< prev index next >