Skip to content

Commit f90391e

Browse files
committed
Javadoc: Fix ambiguous method references.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@491660 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9010e78 commit f90391e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/java/org/apache/commons/io/FileUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ public static void copyFileToDirectory(File srcFile, File destDir, boolean prese
598598
* @throws NullPointerException if source or destination is null
599599
* @throws IOException if source or destination is invalid
600600
* @throws IOException if an IO error occurs during copying
601-
* @see #copyFileToDirectory
601+
* @see #copyFileToDirectory(File, File)
602602
*/
603603
public static void copyFile(File srcFile, File destFile) throws IOException {
604604
copyFile(srcFile, destFile, true);
@@ -620,7 +620,7 @@ public static void copyFile(File srcFile, File destFile) throws IOException {
620620
* @throws NullPointerException if source or destination is null
621621
* @throws IOException if source or destination is invalid
622622
* @throws IOException if an IO error occurs during copying
623-
* @see #copyFileToDirectory
623+
* @see #copyFileToDirectory(File, File, boolean)
624624
*/
625625
public static void copyFile(File srcFile, File destFile,
626626
boolean preserveFileDate) throws IOException {

0 commit comments

Comments
 (0)