Skip to content

Commit

Permalink
Removed some unnecessary variables from AliconaReader.
Browse files Browse the repository at this point in the history
  • Loading branch information
melissalinkert committed Oct 19, 2006
1 parent 27d7128 commit 7dad139
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions loci/formats/in/AliconaReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ public class AliconaReader extends FormatReader {
/** Number of channels. */
private int channels;

/** Image offsets. */
private int depthOffset;
/** Image offset. */
private int textureOffset;

/** Number of bytes per pixel (either 1 or 2). */
Expand Down Expand Up @@ -193,9 +192,6 @@ protected void initFile(String id) throws FormatException, IOException {
else if (key.equals("NumberOfPlanes")) {
numImages = Integer.parseInt(value);
}
else if (key.equals("DepthImageOffset")) {
depthOffset = Integer.parseInt(value);
}
else if (key.equals("TextureImageOffset")) {
textureOffset = Integer.parseInt(value);
}
Expand Down

0 comments on commit 7dad139

Please sign in to comment.