Updated changes.xml, fixed a small javadoc issue

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/compress/trunk@1653282 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 95cc013..fcbb359 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -44,6 +44,19 @@
   <body>
     <release version="1.10" date="not released, yet"
              description="Release 1.10">
+
+      <action type="add" date="2014-01-10" issue="COMPRESS-296"
+              due-to="Kristian Rosenvold">
+        Added support for parallel compression. This low-level API allows
+        a client to build a zip/jar file by using the class
+        org.apache.commons.compress.archivers.zip.ParallelScatterZipCreator.
+
+        Zip documentation updated with further notes about parallel features.
+
+        Please note that some aspects of jar creation need to be
+        handled by client code and is not part of commons-compress for this release.
+      </action>
+
       <action type="add" date="2014-12-24"
               due-to="Kristian Rosenvold">
         Cut overall object instantiation in half by changing file
diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/InputStreamSupplier.java b/src/main/java/org/apache/commons/compress/archivers/zip/InputStreamSupplier.java
index ecc0d4c..4a3d407 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/InputStreamSupplier.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/InputStreamSupplier.java
@@ -25,7 +25,7 @@
 
     /**
      * Supply an input stream for a resource.
-     * @return the input stream, may be null if there is no content for the resource.
+     * @return the input stream. Should never null, but may be an empty stream.
      */
     InputStream get();
 }