Skip to content

Commit

Permalink
Fixed min TiffData calculation.
Browse files Browse the repository at this point in the history
  • Loading branch information
melissalinkert committed Oct 5, 2007
1 parent 50cd89c commit 74e73cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions loci/formats/in/OMETiffReader.java
Expand Up @@ -235,6 +235,7 @@ protected void initStandardMetadata() throws FormatException, IOException {
}
Element[] tiffData = (Element[]) v.toArray(new Element[0]);
int[] smallestCoords = new int[4];
Arrays.fill(smallestCoords, Integer.MAX_VALUE);
for (int q=0; q<tiffData.length; q++) {
String firstZ = tiffData[q].getAttribute("FirstZ");
String firstC = tiffData[q].getAttribute("FirstC");
Expand Down

0 comments on commit 74e73cf

Please sign in to comment.