From 51427b92a2d9cd3fc619854e26536c9c6adad947 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 2 Jul 2013 22:25:23 +0200 Subject: PNGJ: Bump to git sha1 a0b1101ba2d37de39428ed55c8189502e24a3125 of https://code.google.com/p/pngj/ --- .../classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/jogl/classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java') diff --git a/src/jogl/classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java b/src/jogl/classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java index 6cc39b0e6..cdad09809 100644 --- a/src/jogl/classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java +++ b/src/jogl/classes/jogamp/opengl/util/pngj/PngIDatChunkInputStream.java @@ -37,7 +37,8 @@ class PngIDatChunkInputStream extends InputStream { List foundChunksInfo = new ArrayList(); /** - * Constructor must be called just after reading length and id of first IDAT chunk + * Constructor must be called just after reading length and id of first IDAT + * chunk **/ PngIDatChunkInputStream(InputStream iStream, int lenFirstChunk, long offset) { this.offset = offset; @@ -95,7 +96,8 @@ class PngIDatChunkInputStream extends InputStream { } /** - * sometimes last row read does not fully consumes the chunk here we read the reamaing dummy bytes + * sometimes last row read does not fully consumes the chunk here we read + * the reamaing dummy bytes */ void forceChunkEnd() { if (!ended) { @@ -108,7 +110,8 @@ class PngIDatChunkInputStream extends InputStream { } /** - * This can return less than len, but never 0 Returns -1 if "pseudo file" ended prematurely. That is our error. + * This can return less than len, but never 0 Returns -1 if "pseudo file" + * ended prematurely. That is our error. */ @Override public int read(byte[] b, int off, int len) throws IOException { -- cgit v1.2.3