Author: bodewig
Date: Sat Jul 12 05:48:05 2014
New Revision: 1609882
URL: http://svn.apache.org/r1609882
Log:
give credit to java.util.zip for DEFLATE but by now the gzip layer is ours
Modified:
commons/proper/compress/trunk/src/site/xdoc/examples.xml
Modified: commons/proper/compress/trunk/src/site/xdoc/examples.xml
URL:
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/site/xdoc/examples.xml?rev=1609882&r1=1609881&r2=1609882&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/site/xdoc/examples.xml (original)
+++ commons/proper/compress/trunk/src/site/xdoc/examples.xml Sat Jul 12
05:48:05 2014
@@ -363,9 +363,9 @@ bzIn.close();
<subsection name="gzip">
- <p>The implementation of this package is provided by
- the <code>java.util.zip</code> package of the Java class
- library.</p>
+ <p>The implementation of the DEFLATE/INFLATE code used by this
+ package is provided by the <code>java.util.zip</code> package
+ of the Java class library.</p>
<p>Uncompressing a given gzip compressed file (you would
certainly add exception handling and make sure all streams
@@ -483,6 +483,10 @@ lzmaIn.close();
<subsection name="DEFLATE">
+ <p>The implementation of the DEFLATE/INFLATE code used by this
+ package is provided by the <code>java.util.zip</code> package
+ of the Java class library.</p>
+
<p>Uncompressing a given DEFLATE compressed file (you would
certainly add exception handling and make sure all streams
get closed properly):</p>