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/ProgressiveOutputStream.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/jogl/classes/jogamp/opengl/util/pngj/ProgressiveOutputStream.java') diff --git a/src/jogl/classes/jogamp/opengl/util/pngj/ProgressiveOutputStream.java b/src/jogl/classes/jogamp/opengl/util/pngj/ProgressiveOutputStream.java index a5bad666c..4516a0886 100644 --- a/src/jogl/classes/jogamp/opengl/util/pngj/ProgressiveOutputStream.java +++ b/src/jogl/classes/jogamp/opengl/util/pngj/ProgressiveOutputStream.java @@ -4,7 +4,8 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; /** - * stream that outputs to memory and allows to flush fragments every 'size' bytes to some other destination + * stream that outputs to memory and allows to flush fragments every 'size' + * bytes to some other destination */ abstract class ProgressiveOutputStream extends ByteArrayOutputStream { private final int size; @@ -50,8 +51,8 @@ abstract class ProgressiveOutputStream extends ByteArrayOutputStream { } /** - * if it's time to flush data (or if forced==true) calls abstract method flushBuffer() and cleans those bytes from - * own buffer + * if it's time to flush data (or if forced==true) calls abstract method + * flushBuffer() and cleans those bytes from own buffer */ private final void checkFlushBuffer(boolean forced) { while (forced || count >= size) { -- cgit v1.2.3