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 8a0194a596062ea15f6e6be3541dc88a2ac9e8c5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:20:17 2024 -0500 Depreacte ObjectUtils 0-argument contructor --- src/main/java/org/apache/commons/lang3/ObjectUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/ObjectUtils.java b/src/main/java/org/apache/commons/lang3/ObjectUtils.java index 91a17b917..ccd8db057 100644 --- a/src/main/java/org/apache/commons/lang3/ObjectUtils.java +++ b/src/main/java/org/apache/commons/lang3/ObjectUtils.java @@ -1403,8 +1403,12 @@ public class ObjectUtils { * * <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 ObjectUtils() { + // empty } }