You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/17 18:37:18 UTC

svn commit: r1468991 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/CopyUtils.java

Author: sebb
Date: Wed Apr 17 16:37:18 2013
New Revision: 1468991

URL: http://svn.apache.org/r1468991
Log:
Add deprecation version

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

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/CopyUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/CopyUtils.java?rev=1468991&r1=1468990&r2=1468991&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/CopyUtils.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/CopyUtils.java Wed Apr 17 16:37:18 2013
@@ -148,7 +148,7 @@ public class CopyUtils {
      * @param input the byte array to read from
      * @param output the <code>Writer</code> to write to
      * @throws IOException In case of an I/O problem
-     * @deprecated use {@link #copy(byte[], Writer, String)} instead
+     * @deprecated 2.5 use {@link #copy(byte[], Writer, String)} instead
      */
     @Deprecated
     public static void copy(final byte[] input, final Writer output)
@@ -240,7 +240,7 @@ public class CopyUtils {
      * @param input the <code>InputStream</code> to read from
      * @param output the <code>Writer</code> to write to
      * @throws IOException In case of an I/O problem
-     * @deprecated use {@link #copy(InputStream, Writer, String)} instead
+     * @deprecated 2.5 use {@link #copy(InputStream, Writer, String)} instead
      */
     @Deprecated
     public static void copy(
@@ -283,7 +283,7 @@ public class CopyUtils {
      * @param input the <code>Reader</code> to read from
      * @param output the <code>OutputStream</code> to write to
      * @throws IOException In case of an I/O problem
-     * @deprecated use {@link #copy(Reader, OutputStream, String)} instead
+     * @deprecated 2.5 use {@link #copy(Reader, OutputStream, String)} instead
      */
     @Deprecated
     public static void copy(
@@ -330,7 +330,7 @@ public class CopyUtils {
      * @param input the <code>String</code> to read from
      * @param output the <code>OutputStream</code> to write to
      * @throws IOException In case of an I/O problem
-     * @deprecated use {@link #copy(String, OutputStream, String)} instead
+     * @deprecated 2.5 use {@link #copy(String, OutputStream, String)} instead
      */
     @Deprecated
     public static void copy(