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 945040ff6e8b9d59ce5a568aad7dc106ae624f7a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 10:01:44 2024 -0500 Depreacte FileSystemUtils 0-argument contructor --- src/main/java/org/apache/commons/io/FileSystemUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/io/FileSystemUtils.java b/src/main/java/org/apache/commons/io/FileSystemUtils.java index 8a244ec1..2b959ff9 100644 --- a/src/main/java/org/apache/commons/io/FileSystemUtils.java +++ b/src/main/java/org/apache/commons/io/FileSystemUtils.java @@ -242,8 +242,12 @@ public class FileSystemUtils { /** * Instances should NOT be constructed in standard programming. + * + * @deprecated TODO Make private in 4.0. */ + @Deprecated public FileSystemUtils() { + // empty } /**