8151323: GeoTIFFTagSet#"ModelTiePointTag" name case does not match GeoTIFF specification
authorbpb
Fri, 29 Apr 2016 11:14:56 -0700
changeset 38391 7e1487f1b7dc
parent 38390 233b57868492
child 38392 d10be4336930
8151323: GeoTIFFTagSet#"ModelTiePointTag" name case does not match GeoTIFF specification Summary: Change occurrences of "ModelTiePoint" to "ModelTiepoint." Reviewed-by: prr
jdk/src/java.desktop/share/classes/javax/imageio/plugins/tiff/GeoTIFFTagSet.java
--- a/jdk/src/java.desktop/share/classes/javax/imageio/plugins/tiff/GeoTIFFTagSet.java	Fri Apr 29 21:59:47 2016 +0400
+++ b/jdk/src/java.desktop/share/classes/javax/imageio/plugins/tiff/GeoTIFFTagSet.java	Fri Apr 29 11:14:56 2016 -0700
@@ -87,9 +87,9 @@
         }
     }
 
-    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);
         }
@@ -126,7 +126,7 @@
 
         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());