8151323: GeoTIFFTagSet#"ModelTiePointTag" name case does not match GeoTIFF specification

Change occurrences of "ModelTiePoint" to "ModelTiepoint."

Reviewed-by: prr
This commit is contained in:
Brian Burkhalter 2016-04-29 11:14:56 -07:00
parent bf6b990945
commit 6a55291a23

@ -87,9 +87,9 @@ public class GeoTIFFTagSet extends TIFFTagSet {
}
}
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 @@ public class GeoTIFFTagSet extends TIFFTagSet {
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());