Author: niallp
Date: Wed Feb  6 12:23:25 2008
New Revision: 619144

URL: http://svn.apache.org/viewvc?rev=619144&view=rev
Log:
Javadoc corrections

Modified:
    
commons/proper/io/trunk/src/java/org/apache/commons/io/output/NullWriter.java
    
commons/proper/io/trunk/src/java/org/apache/commons/io/output/ProxyWriter.java

Modified: 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/NullWriter.java
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/output/NullWriter.java?rev=619144&r1=619143&r2=619144&view=diff
==============================================================================
--- 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/NullWriter.java 
(original)
+++ 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/NullWriter.java 
Wed Feb  6 12:23:25 2008
@@ -42,7 +42,8 @@
     /**
      * Does nothing - output to <code>/dev/null</code>.
      * @param c The character to write
-     * @sinc IO 2.0
+     * @return this writer
+     * @since IO 2.0
      */
     public Writer append(char c) {
         //to /dev/null
@@ -54,7 +55,8 @@
      * @param csq The character sequence to write
      * @param start The index of the first character to write
      * @param end  The index of the first character to write (exclusive)
-     * @sinc IO 2.0
+     * @return this writer
+     * @since IO 2.0
      */
     public Writer append(CharSequence csq, int start, int end) {
         //to /dev/null
@@ -64,7 +66,8 @@
     /**
      * Does nothing - output to <code>/dev/null</code>.
      * @param csq The character sequence to write
-     * @sinc IO 2.0
+     * @return this writer
+     * @since IO 2.0
      */
     public Writer append(CharSequence csq) {
         //to /dev/null

Modified: 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/ProxyWriter.java
URL: 
http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/output/ProxyWriter.java?rev=619144&r1=619143&r2=619144&view=diff
==============================================================================
--- 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/ProxyWriter.java 
(original)
+++ 
commons/proper/io/trunk/src/java/org/apache/commons/io/output/ProxyWriter.java 
Wed Feb  6 12:23:25 2008
@@ -46,7 +46,9 @@
     /**
      * Invokes the delegate's <code>append(char)</code> method.
      * @param c The character to write
-     * @sinc IO 2.0
+     * @return this writer
+     * @throws IOException if an I/O error occurs
+     * @since IO 2.0
      */
     public Writer append(char c) throws IOException {
         out.append(c);
@@ -58,7 +60,9 @@
      * @param csq The character sequence to write
      * @param start The index of the first character to write
      * @param end  The index of the first character to write (exclusive)
-     * @sinc IO 2.0
+     * @return this writer
+     * @throws IOException if an I/O error occurs
+     * @since IO 2.0
      */
     public Writer append(CharSequence csq, int start, int end) throws 
IOException {
         out.append(csq, start, end);
@@ -68,7 +72,9 @@
     /**
      * Invokes the delegate's <code>append(CharSequence)</code> method.
      * @param csq The character sequence to write
-     * @sinc IO 2.0
+     * @return this writer
+     * @throws IOException if an I/O error occurs
+     * @since IO 2.0
      */
     public Writer append(CharSequence csq) throws IOException {
         out.append(csq);


Reply via email to