Skip to content

Commit

Permalink
Made PR review changes
Browse files Browse the repository at this point in the history
Fixed formatting issue in TiffTagsReader
  • Loading branch information
jbouffard committed Nov 1, 2016
1 parent 553cc61 commit a87e70a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@ object TiffTagsReader {

// Validate GeoTiff identification number
val geoTiffIdNumber = byteReader.getChar
if ( geoTiffIdNumber != 42 && geoTiffIdNumber != 43)
if (geoTiffIdNumber != 42 && geoTiffIdNumber != 43)
throw new MalformedGeoTiffException(s"bad identification number (must be 42 or 43, was $geoTiffIdNumber)")

if (geoTiffIdNumber == 42) {
Expand Down
Expand Up @@ -14,7 +14,7 @@ object TiffFieldType {
val SignedFractionalsFieldType = 10
val FloatsFieldType = 11
val DoublesFieldType = 12
val LongsFieldType = 16
val LongsFieldType = 16 // This is 64-bits
val SignedLongsFieldType = 17
val IFDOffset = 18
}

0 comments on commit a87e70a

Please sign in to comment.