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 634cb3d3cb555202ac7173ba596b482241258fca
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Jan 25 09:58:14 2024 -0500

    Depreacte CopyUtils 0-argument contructor
---
 src/main/java/org/apache/commons/io/CopyUtils.java | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/CopyUtils.java 
b/src/main/java/org/apache/commons/io/CopyUtils.java
index da01a987..55e04945 100644
--- a/src/main/java/org/apache/commons/io/CopyUtils.java
+++ b/src/main/java/org/apache/commons/io/CopyUtils.java
@@ -349,7 +349,12 @@ public class CopyUtils {
 
     /**
      * Instances should NOT be constructed in standard programming.
+     *
+     * @deprecated TODO Make private in 4.0.
      */
-    public CopyUtils() { }
+    @Deprecated
+    public CopyUtils() {
+        // empty
+    }
 
 }

Reply via email to