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


The following commit(s) were added to refs/heads/master by this push:
     new 85dcf0ba Remove obsolete comments
85dcf0ba is described below

commit 85dcf0bace207235071fc4a452e05cc5384bf459
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Apr 28 16:52:55 2023 -0400

    Remove obsolete comments
---
 src/main/java/org/apache/commons/io/FileUtils.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java 
b/src/main/java/org/apache/commons/io/FileUtils.java
index b4bb92b2..b0d9f9e0 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -770,9 +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 {
-        // @formatter:off
-        copyFile(srcFile, destFile, preserveFileDate, new CopyOption[] 
{StandardCopyOption.REPLACE_EXISTING});
-        // @formatter:on
+        copyFile(srcFile, destFile, preserveFileDate, new CopyOption[] { 
StandardCopyOption.REPLACE_EXISTING });
     }
 
     /**

Reply via email to