@@ -770,7 +770,7 @@ public static void copyFile(final File srcFile, final File destFile) throws IOEx
770770 * @see #copyFile(File, File, boolean, CopyOption...)
771771 */
772772 public static void copyFile (final File srcFile , final File destFile , final boolean preserveFileDate ) throws IOException {
773- copyFile (srcFile , destFile , preserveFileDate , new CopyOption [] { StandardCopyOption .REPLACE_EXISTING } );
773+ copyFile (srcFile , destFile , preserveFileDate , StandardCopyOption .REPLACE_EXISTING );
774774 }
775775
776776 /**
@@ -2322,9 +2322,9 @@ public static void moveDirectory(final File srcDir, final File destDir) throws I
23222322
23232323 /**
23242324 * Moves a directory to another directory.
2325- * <p>
2325+ * <p>
23262326 * If {@code createDestDir} is true, creates all destination parent directories, including any necessary but nonexistent parent directories.
2327- * </p>
2327+ * </p>
23282328 *
23292329 * @param source the file to be moved.
23302330 * @param destDir the destination file.
@@ -2407,9 +2407,9 @@ public static void moveFile(final File srcFile, final File destFile, final CopyO
24072407
24082408 /**
24092409 * Moves a file to a directory.
2410- * <p>
2410+ * <p>
24112411 * If {@code createDestDir} is true, creates all destination parent directories, including any necessary but nonexistent parent directories.
2412- * </p>
2412+ * </p>
24132413 *
24142414 * @param srcFile the file to be moved.
24152415 * @param destDir the destination file.
@@ -2436,9 +2436,9 @@ public static void moveFileToDirectory(final File srcFile, final File destDir, f
24362436
24372437 /**
24382438 * Moves a file or directory to a destination directory.
2439- * <p>
2439+ * <p>
24402440 * If {@code createDestDir} is true, creates all destination parent directories, including any necessary but nonexistent parent directories.
2441- * </p>
2441+ * </p>
24422442 * <p>
24432443 * When the destination is on another file system, do a "copy and delete".
24442444 * </p>
0 commit comments