mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-10-04 11:26:44 -04:00
Removed some redundant comments.
This commit is contained in:
@@ -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
|
||||||
|
Reference in New Issue
Block a user