classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: minor API doc fixes in java.util.zip.Inflater


From: David Gilbert
Subject: [cp-patches] FYI: minor API doc fixes in java.util.zip.Inflater
Date: Wed, 13 Jul 2005 09:49:43 +0000
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050426)

I committed this patch:

2005-07-13  David Gilbert  <address@hidden>

        * java/util/zip/Inflater.java: minor API doc fixes.

Regards,

Dave Gilbert

Index: java/util/zip/Inflater.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/util/zip/Inflater.java,v
retrieving revision 1.7
diff -u -r1.7 Inflater.java
--- java/util/zip/Inflater.java 2 Jul 2005 20:32:44 -0000       1.7
+++ java/util/zip/Inflater.java 13 Jul 2005 08:45:19 -0000
@@ -1,5 +1,5 @@
 /* Inflater.java - Decompress a data stream
-   Copyright (C) 1999, 2000, 2001, 2003  Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000, 2001, 2003, 2005  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -266,7 +266,7 @@
    * returns 0, you should check, whether needsDictionary(),
    * needsInput() or finished() returns true, to determine why no 
    * further output is produced.
-   * @param buffer the output buffer.
+   * @param buf 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.
@@ -282,7 +282,7 @@
    * returns 0, you should check, whether needsDictionary(),
    * needsInput() or finished() returns true, to determine why no 
    * further output is produced.
-   * @param buffer the output buffer.
+   * @param buf the output buffer.
    * @param off the offset into buffer where the output should start.
    * @param len the maximum length of the output.
    * @return the number of bytes written to the buffer, 0 if no further
@@ -406,7 +406,7 @@
   /**
    * Sets the input.  This should only be called, if needsInput()
    * returns true.
-   * @param buffer the input.
+   * @param buf the input.
    * @exception IllegalStateException if no input is needed.
    */
   public void setInput (byte[] buf) 
@@ -417,7 +417,7 @@
   /**
    * Sets the input.  This should only be called, if needsInput()
    * returns true.
-   * @param buffer the input.
+   * @param buf the input.
    * @param off the offset into buffer where the input starts.
    * @param len the length of the input.  
    * @exception IllegalStateException if no input is needed.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]