You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by sc...@apache.org on 2005/08/23 00:36:31 UTC

svn commit: r239265 - /jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java

Author: scolebourne
Date: Mon Aug 22 15:36:29 2005
New Revision: 239265

URL: http://svn.apache.org/viewcvs?rev=239265&view=rev
Log:
Javadoc
bug 35675, from Nathan Beyer

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

Modified: jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java?rev=239265&r1=239264&r2=239265&view=diff
==============================================================================
--- jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java (original)
+++ jakarta/commons/proper/io/trunk/src/java/org/apache/commons/io/FileUtils.java Mon Aug 22 15:36:29 2005
@@ -43,8 +43,8 @@
  * <p>
  * There are methods to  create a {@link #toFile File from a URL}, copy a
  * {@link #copyFileToDirectory File to a directory},
- * copy a {@link #copyFile File to another File},
- * copy a {@link #copyURLToFile URL's contents to a File},
+ * copy a {@link #copyFile(File, File) File to another File},
+ * copy a {@link #copyURLToFile(URL, File) URL's contents to a File},
  * as well as methods to {@link #deleteDirectory(File) delete} and
  * {@link #cleanDirectory(File) clean} a directory.
  * </p>
@@ -409,7 +409,7 @@
      * @throws NullPointerException if source or destination is null
      * @throws IOException if source or destination is invalid
      * @throws IOException if an IO error occurs during copying
-     * @see #copyFile
+     * @see #copyFile(File, File, boolean)
      */
     public static void copyFileToDirectory(File srcFile, File destDir) throws IOException {
         if (destDir == null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org