This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit f476fd528b6782246cfa314ab0516ba0b74343f9
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 13 09:36:31 2023 -0400

    Whitespace
---
 src/main/java/org/apache/commons/io/FileUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java 
b/src/main/java/org/apache/commons/io/FileUtils.java
index 36aa2a27..ef1f5082 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -770,7 +770,7 @@ public class FileUtils {
      * @see #copyFile(File, File, boolean, CopyOption...)
      */
     public static void copyFile(final File srcFile, final File destFile, final 
boolean preserveFileDate) throws IOException {
-        copyFile(srcFile, destFile, preserveFileDate, new CopyOption[] { 
StandardCopyOption.REPLACE_EXISTING });
+        copyFile(srcFile, destFile, preserveFileDate, 
StandardCopyOption.REPLACE_EXISTING);
     }
 
     /**
@@ -2322,9 +2322,9 @@ public class FileUtils {
 
     /**
      * Moves a directory to another directory.
-     * <p> 
+     * <p>
      * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
-     * </p> 
+     * </p>
      *
      * @param source the file to be moved.
      * @param destDir the destination file.
@@ -2407,9 +2407,9 @@ public class FileUtils {
 
     /**
      * Moves a file to a directory.
-     * <p> 
+     * <p>
      * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
-     * </p> 
+     * </p>
      *
      * @param srcFile the file to be moved.
      * @param destDir the destination file.
@@ -2436,9 +2436,9 @@ public class FileUtils {
 
     /**
      * Moves a file or directory to a destination directory.
-     * <p> 
+     * <p>
      * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
-     * </p> 
+     * </p>
      * <p>
      * When the destination is on another file system, do a "copy and delete".
      * </p>

Reply via email to