You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2012/06/04 18:36:14 UTC

svn commit: r1346027 - in /ant/core/trunk/src/main/org/apache/tools/zip: ZipLong.java ZipOutputStream.java

Author: bodewig
Date: Mon Jun  4 16:36:14 2012
New Revision: 1346027

URL: http://svn.apache.org/viewvc?rev=1346027&view=rev
Log:
some stray @since tags from CC

Modified:
    ant/core/trunk/src/main/org/apache/tools/zip/ZipLong.java
    ant/core/trunk/src/main/org/apache/tools/zip/ZipOutputStream.java

Modified: ant/core/trunk/src/main/org/apache/tools/zip/ZipLong.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/zip/ZipLong.java?rev=1346027&r1=1346026&r2=1346027&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/zip/ZipLong.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/zip/ZipLong.java Mon Jun  4 16:36:14 2012
@@ -52,14 +52,12 @@ public final class ZipLong implements Cl
 
     /**
      * Data Descriptor signature
-     * @since 1.1
      */
     public static final ZipLong DD_SIG = new ZipLong(0X08074B50L);
 
     /**
      * Value stored in size and similar fields if ZIP64 extensions are
      * used.
-     * @since 1.3
      */
     static final ZipLong ZIP64_MAGIC = new ZipLong(ZipConstants.ZIP64_MAGIC);
 

Modified: ant/core/trunk/src/main/org/apache/tools/zip/ZipOutputStream.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/zip/ZipOutputStream.java?rev=1346027&r1=1346026&r2=1346027&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/zip/ZipOutputStream.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/zip/ZipOutputStream.java Mon Jun  4 16:36:14 2012
@@ -1288,7 +1288,6 @@ public class ZipOutputStream extends Fil
      * Writes the "ZIP64 End of central dir record" and
      * "ZIP64 End of central dir locator".
      * @throws IOException on error
-     * @since 1.3
      */
     protected void writeZip64CentralDirectory() throws IOException {
         if (zip64Mode == Zip64Mode.Never) {
@@ -1431,8 +1430,6 @@ public class ZipOutputStream extends Fil
     /**
      * Get the existing ZIP64 extended information extra field or
      * create a new one and add it to the entry.
-     *
-     * @since 1.3
      */
     private Zip64ExtendedInformationExtraField getZip64Extra(ZipEntry ze) {
         if (entry != null) {
@@ -1462,8 +1459,6 @@ public class ZipOutputStream extends Fil
     /**
      * Is there a ZIP64 extended information extra field for the
      * entry?
-     *
-     * @since 1.3
      */
     private boolean hasZip64Extra(ZipEntry ze) {
         return ze.getExtraField(Zip64ExtendedInformationExtraField
@@ -1475,8 +1470,6 @@ public class ZipOutputStream extends Fil
      * If the mode is AsNeeded and the entry is a compressed entry of
      * unknown size that gets written to a non-seekable stream the
      * change the default to Never.
-     *
-     * @since 1.3
      */
     private Zip64Mode getEffectiveZip64Mode(ZipEntry ze) {
         if (zip64Mode != Zip64Mode.AsNeeded