Mainly new code standard.

A few changes that should have been committed earlier.. :-/
This commit is contained in:
Harald Kuhr
2011-02-17 12:40:49 +01:00
parent 41b8080683
commit 20b87d155d
40 changed files with 951 additions and 593 deletions

View File

@@ -506,12 +506,12 @@ public class JPEGImageReader extends ImageReaderBase {
}
private void readSegments() throws IOException {
long pos = mImageInput.getStreamPosition();
long pos = imageInput.getStreamPosition();
try {
mImageInput.seek(0); // TODO: Seek to wanted image
imageInput.seek(0); // TODO: Seek to wanted image
segments = JPEGSegmentUtil.readSegments(mImageInput, SEGMENT_IDENTIFIERS);
segments = JPEGSegmentUtil.readSegments(imageInput, SEGMENT_IDENTIFIERS);
}
catch (IOException ignore) {
}
@@ -519,7 +519,7 @@ public class JPEGImageReader extends ImageReaderBase {
foo.printStackTrace();
}
finally {
mImageInput.seek(pos);
imageInput.seek(pos);
}
}