summaryrefslogtreecommitdiff
path: root/java/util/zip/Inflater.java
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2002-05-06 16:19:19 +0000
committerMark Wielaard <mark@klomp.org>2002-05-06 16:19:19 +0000
commit07ced61eb09d4d4aa9f25bf67a0519f1fdccdb4d (patch)
tree020f36db6b15868dd6dc27c9e198de52b89a91b6 /java/util/zip/Inflater.java
parent363d14124673438ef6402c7a65ab95f68188d00d (diff)
downloadclasspath-07ced61eb09d4d4aa9f25bf67a0519f1fdccdb4d.tar.gz
* java/awt/Choice.java: Fix javadoc spelling mistake.
* java/awt/im/spi/InputMethodContext.java: Import HeadlessException. * java/awt/image/PixelGrabber.java: Fix javadoc spelling mistake. * java/io/File.java: Likewise. * java/lang/String.java: Likewise. * java/security/AccessController.java: Likewise. * java/sql/DatabaseMetaData.java: Likewise. * java/util/Arrays.java: Likewise. * java/util/prefs/AbstractPreferences.java: Likewise. * java/util/prefs/Preferences.java: Likewise. * java/util/zip/Inflater.java: Likewise. * java/util/regex/PatternSyntaxException.java: New class.
Diffstat (limited to 'java/util/zip/Inflater.java')
-rw-r--r--java/util/zip/Inflater.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/java/util/zip/Inflater.java b/java/util/zip/Inflater.java
index 218d92d82..48f7f7eeb 100644
--- a/java/util/zip/Inflater.java
+++ b/java/util/zip/Inflater.java
@@ -197,7 +197,7 @@ public class Inflater
/**
* Decodes the deflate header.
* @return false if more input is needed.
- * @exception DataFormatException, if header is invalid.
+ * @exception DataFormatException if header is invalid.
*/
private boolean decodeHeader() throws DataFormatException
{
@@ -255,7 +255,7 @@ public class Inflater
* Decodes the huffman encoded symbols in the input stream.
* @return false if more input is needed, true if output window is
* full or the current block ends.
- * @exception DataFormatException, if deflated stream is invalid.
+ * @exception DataFormatException if deflated stream is invalid.
*/
private boolean decodeHuffman() throws DataFormatException
{
@@ -347,7 +347,7 @@ public class Inflater
/**
* Decodes the adler checksum after the deflate stream.
* @return false if more input is needed.
- * @exception DataFormatException, if checksum doesn't match.
+ * @exception DataFormatException if checksum doesn't match.
*/
private boolean decodeChksum() throws DataFormatException
{
@@ -371,7 +371,7 @@ public class Inflater
/**
* Decodes the deflated stream.
* @return false if more input is needed, or if finished.
- * @exception DataFormatException, if deflated stream is invalid.
+ * @exception DataFormatException if deflated stream is invalid.
*/
private boolean decode() throws DataFormatException
{
@@ -553,8 +553,8 @@ public class Inflater
* @param buffer the output buffer.
* @return the number of bytes written to the buffer, 0 if no further
* output can be produced.
- * @exception DataFormatException, if deflated stream is invalid.
- * @exception IllegalArgumentException, if buf has length 0.
+ * @exception DataFormatException if deflated stream is invalid.
+ * @exception IllegalArgumentException if buf has length 0.
*/
public int inflate(byte[] buf) throws DataFormatException
{
@@ -571,8 +571,8 @@ public class Inflater
* @param len the maximum length of the output.
* @return the number of bytes written to the buffer, 0 if no further
* output can be produced.
- * @exception DataFormatException, if deflated stream is invalid.
- * @exception IllegalArgumentException, if len is <= 0.
+ * @exception DataFormatException if deflated stream is invalid.
+ * @exception IllegalArgumentException if len is lt;eq; 0.
* @exception IndexOutOfBoundsException if the off and/or len are wrong.
*/
public int inflate(byte[] buf, int off, int len) throws DataFormatException