mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-05 04:25:29 -04:00
Removed some redundant comments.
This commit is contained in:
parent
0a71af5405
commit
9849aeb2a7
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user