diff options
author | Sven Gothel <[email protected]> | 2015-09-24 18:31:03 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-09-24 18:31:03 +0200 |
commit | a1009b450e68c083c0d3c56129602697a4f674d9 (patch) | |
tree | 4a585b6e73e012d00b7d094a0123190ccb401abf /src/junit/com/jogamp/common | |
parent | 0e723ff0866919cbc4ddfc3d7773c3485252eba3 (diff) |
Bug 1231: Usability of CustomCompress API incl zip-level; Replace test-exe deflated files w/ zip-level 9
Diffstat (limited to 'src/junit/com/jogamp/common')
-rw-r--r-- | src/junit/com/jogamp/common/util/CustomDeflate.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/util/CustomDeflate.java b/src/junit/com/jogamp/common/util/CustomDeflate.java index 876c6e4..d4682e8 100644 --- a/src/junit/com/jogamp/common/util/CustomDeflate.java +++ b/src/junit/com/jogamp/common/util/CustomDeflate.java @@ -71,7 +71,7 @@ public class CustomDeflate { throw new IOException("Got "+numBytes+" bytes != expected "+inSize); } out = new FileOutputStream(fileOut); - CustomCompress.deflateToStream(input, out); + CustomCompress.deflateToStream(input, 0, inSize, 9, out); } catch (final IOException ioe) { ioe.printStackTrace(); } finally { |