From aae4e79e642c012664933bae23cc55bfd40cc71d Mon Sep 17 00:00:00 2001
From: Antoine Levy-Lambert
Date: Tue, 14 Dec 2010 21:42:42 +0000
Subject: [PATCH] another change in order not to get any warnings during
JavaDoc generation when preparing releases
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1049295 13f79535-47bb-0310-9956-ffa450edef68
---
src/main/org/apache/tools/zip/ZipEntry.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/main/org/apache/tools/zip/ZipEntry.java b/src/main/org/apache/tools/zip/ZipEntry.java
index 33dbcaa2e..a14abccfb 100644
--- a/src/main/org/apache/tools/zip/ZipEntry.java
+++ b/src/main/org/apache/tools/zip/ZipEntry.java
@@ -28,8 +28,7 @@ import java.util.zip.ZipException;
* access to the internal and external file attributes.
*
* The extra data is expected to follow the recommendation of
- * {@link http://www.pkware.com/documents/casestudies/APPNOTE.TXT
- * APPNOTE.txt}:
+ * the .ZIP File Format Specification created by PKWARE Inc. :
*
* - the extra byte array consists of a sequence of extra fields
* - each extra fields starts by a two byte header id followed by
@@ -42,6 +41,8 @@ import java.util.zip.ZipException;
* methods of this class. Versions prior to Apache Commons Compress
* 1.1 would have thrown an exception if any attempt was made to read
* or write extra data not conforming to the recommendation.
+ * @see
+ * .ZIP File Format Specification
*
*/
public class ZipEntry extends java.util.zip.ZipEntry implements Cloneable {