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 2012/10/24 14:40:44 UTC

svn commit: r1401654 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java

Author: ggregory
Date: Wed Oct 24 12:40:44 2012
New Revision: 1401654

URL: http://svn.apache.org/viewvc?rev=1401654&view=rev
Log:
Change 2 @since tags from "@since IO 2.1" to "@since 2.1"

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

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java?rev=1401654&r1=1401653&r2=1401654&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileUtils.java Wed Oct 24 12:40:44 2012
@@ -2057,7 +2057,7 @@ public class FileUtils {
      * @throws UnsupportedCharsetException
      *             thrown instead of {@link UnsupportedEncodingException} in version 2.2 if the encoding is not
      *             supported by the VM
-     * @since IO 2.1
+     * @since 2.1
      */
     public static void write(File file, CharSequence data, String encoding, boolean append) throws IOException {
         write(file, data, Charsets.toCharset(encoding), append);
@@ -2086,7 +2086,7 @@ public class FileUtils {
      * @param append if {@code true}, then bytes will be added to the
      * end of the file rather than overwriting
      * @throws IOException in case of an I/O error
-     * @since IO 2.1
+     * @since 2.1
      */
     public static void writeByteArrayToFile(File file, byte[] data, boolean append) throws IOException {
         writeByteArrayToFile(file, data, 0, data.length, append);