6905029: Broken links in Deflater and DeflaterOutputStream javadoc
Summary: Fix syntax errors in @links
Reviewed-by: alanb
--- a/jdk/src/share/classes/java/util/zip/Deflater.java Mon Dec 07 20:25:59 2009 +0000
+++ b/jdk/src/share/classes/java/util/zip/Deflater.java Mon Dec 07 15:32:26 2009 -0800
@@ -318,7 +318,7 @@
/**
* Compresses the input data and fills specified buffer with compressed
* data. Returns actual number of bytes of compressed data. A return value
- * of 0 indicates that {@link needsInput() needsInput} should be called
+ * of 0 indicates that {@link #needsInput() needsInput} should be called
* in order to determine if more input data is required.
*
* <p>This method uses {@link #NO_FLUSH} as its compression flush mode.
@@ -339,7 +339,7 @@
/**
* Compresses the input data and fills specified buffer with compressed
* data. Returns actual number of bytes of compressed data. A return value
- * of 0 indicates that {@link needsInput() needsInput} should be called
+ * of 0 indicates that {@link #needsInput() needsInput} should be called
* in order to determine if more input data is required.
*
* <p>This method uses {@link #NO_FLUSH} as its compression flush mode.
--- a/jdk/src/share/classes/java/util/zip/DeflaterOutputStream.java Mon Dec 07 20:25:59 2009 +0000
+++ b/jdk/src/share/classes/java/util/zip/DeflaterOutputStream.java Mon Dec 07 15:32:26 2009 -0800
@@ -66,7 +66,7 @@
* @param def the compressor ("deflater")
* @param size the output buffer size
* @param syncFlush
- * if {@code true} the {@link flush()} method of this
+ * if {@code true} the {@link #flush()} method of this
* instance flushes the compressor with flush mode
* {@link Deflater#SYNC_FLUSH} before flushing the output
* stream, otherwise only flushes the output stream
@@ -114,7 +114,7 @@
* @param out the output stream
* @param def the compressor ("deflater")
* @param syncFlush
- * if {@code true} the {@link flush()} method of this
+ * if {@code true} the {@link #flush()} method of this
* instance flushes the compressor with flush mode
* {@link Deflater#SYNC_FLUSH} before flushing the output
* stream, otherwise only flushes the output stream
@@ -151,7 +151,7 @@
*
* @param out the output stream
* @param syncFlush
- * if {@code true} the {@link flush()} method of this
+ * if {@code true} the {@link #flush()} method of this
* instance flushes the compressor with flush mode
* {@link Deflater#SYNC_FLUSH} before flushing the output
* stream, otherwise only flushes the output stream
@@ -262,10 +262,10 @@
/**
* Flushes the compressed output stream.
*
- * If {@link DeflaterOutputStream(OutputStream, Deflater, int, boolean)
+ * If {@link #DeflaterOutputStream(OutputStream, Deflater, int, boolean)
* syncFlush} is {@code true} when this compressed output stream is
- * constructed this method flushes the underlying {@code compressor}
- * first with the flush mode {@link Deflater#SYNC_FLUSH} to force
+ * constructed, this method first flushes the underlying {@code compressor}
+ * with the flush mode {@link Deflater#SYNC_FLUSH} to force
* all pending data to be flushed out to the output stream and then
* flushes the output stream. Otherwise this method only flushes the
* output stream without flushing the {@code compressor}.