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-lang.git
commit e628792cef3ac82c8a8b6e7c0492cb3719120dc2 Author: Gary Gregory <[email protected]> AuthorDate: Thu Jan 25 09:18:14 2024 -0500 Depreacte ClassPathUtils 0-argument contructor --- src/main/java/org/apache/commons/lang3/ClassPathUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/ClassPathUtils.java b/src/main/java/org/apache/commons/lang3/ClassPathUtils.java index 71c3fed92..63d137ee8 100644 --- a/src/main/java/org/apache/commons/lang3/ClassPathUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassPathUtils.java @@ -149,8 +149,12 @@ public class ClassPathUtils { * <p> * This constructor is public to permit tools that require a JavaBean instance to operate. * </p> + * + * @deprecated TODO Make private in 4.0. */ + @Deprecated public ClassPathUtils() { + // empty } }
