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 cd9f5602310c219b3b5c7a9a807641cb2788a66d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:59:16 2024 -0500 Depreacte FilenameUtils 0-argument contructor --- src/main/java/org/apache/commons/io/FilenameUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/io/FilenameUtils.java b/src/main/java/org/apache/commons/io/FilenameUtils.java index 162b6cd7..d3ead560 100644 --- a/src/main/java/org/apache/commons/io/FilenameUtils.java +++ b/src/main/java/org/apache/commons/io/FilenameUtils.java @@ -1718,7 +1718,11 @@ public class FilenameUtils { /** * Instances should NOT be constructed in standard programming. + * + * @deprecated TODO Make private in 4.0. */ + @Deprecated public FilenameUtils() { + // empty } }