You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2016/04/14 22:46:19 UTC

svn commit: r1739189 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java

Author: ggregory
Date: Thu Apr 14 20:46:19 2016
New Revision: 1739189

URL: http://svn.apache.org/viewvc?rev=1739189&view=rev
Log:
Javadoc: Use the active voice.

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java?rev=1739189&r1=1739188&r2=1739189&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/output/XmlStreamWriter.java Thu Apr 14 20:46:19 2016
@@ -51,7 +51,7 @@ public class XmlStreamWriter extends Wri
     private String encoding;
 
     /**
-     * Construct a new XML stream writer for the specified output stream
+     * Constructs a new XML stream writer for the specified output stream
      * with a default encoding of UTF-8.
      *
      * @param out The output stream
@@ -61,7 +61,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Construct a new XML stream writer for the specified output stream
+     * Constructs a new XML stream writer for the specified output stream
      * with the specified default encoding.
      *
      * @param out The output stream
@@ -73,7 +73,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Construct a new XML stream writer for the specified file
+     * Constructs a new XML stream writer for the specified file
      * with a default encoding of UTF-8.
      * 
      * @param file The file to write to
@@ -85,7 +85,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Construct a new XML stream writer for the specified file
+     * Constructs a new XML stream writer for the specified file
      * with the specified default encoding.
      * 
      * @param file The file to write to
@@ -98,7 +98,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Return the detected encoding.
+     * Returns the detected encoding.
      *
      * @return the detected encoding
      */
@@ -107,7 +107,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Return the default encoding.
+     * Returns the default encoding.
      *
      * @return the default encoding
      */
@@ -116,7 +116,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Close the underlying writer.
+     * Closes the underlying writer.
      *
      * @throws IOException if an error occurs closing the underlying writer
      */
@@ -131,7 +131,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Flush the underlying writer.
+     * Flushes the underlying writer.
      *
      * @throws IOException if an error occurs flushing the underlying writer
      */
@@ -143,7 +143,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Detect the encoding.
+     * Detects the encoding.
      *
      * @param cbuf the buffer to write the characters from
      * @param off The start offset
@@ -200,7 +200,7 @@ public class XmlStreamWriter extends Wri
     }
 
     /**
-     * Write the characters to the underlying writer, detecing encoding.
+     * Writes the characters to the underlying writer, detecing encoding.
      * 
      * @param cbuf the buffer to write the characters from
      * @param off The start offset