Removed some redundant comments.

This commit is contained in:
Harald Kuhr 2009-11-04 16:26:04 +01:00
parent 0a71af5405
commit 9849aeb2a7

View File

@ -213,8 +213,7 @@ public class IFFImageReader extends ImageReaderBase {
mBody = new BODYChunk(length); mBody = new BODYChunk(length);
mBodyStart = mImageInput.getStreamPosition(); mBodyStart = mImageInput.getStreamPosition();
// NOTE: We don't read the body here, it's done later in the // NOTE: We don't read the body here, it's done later in the read(int, ImageReadParam) method
// read(int, ImageReadParam) method
// Done reading meta // Done reading meta
return; return;
@ -330,7 +329,7 @@ public class IFFImageReader extends ImageReaderBase {
} }
private void readBody(final ImageReadParam pParam) throws IOException { private void readBody(final ImageReadParam pParam) throws IOException {
mImageInput.seek(mBodyStart); // 8 for the header before length in stream mImageInput.seek(mBodyStart);
mByteRunStream = null; mByteRunStream = null;
// NOTE: mColorMap may be null for 8 bit (gray), 24 bit or 32 bit only // NOTE: mColorMap may be null for 8 bit (gray), 24 bit or 32 bit only