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 3d3a3fe13a5227a428594f41d18475ba63a1a3ef Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:10:04 2024 -0500 Depreacte AnnotationUtils 0-argument contructor --- src/main/java/org/apache/commons/lang3/AnnotationUtils.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/AnnotationUtils.java b/src/main/java/org/apache/commons/lang3/AnnotationUtils.java index fcb579b1a..a489cc3e5 100644 --- a/src/main/java/org/apache/commons/lang3/AnnotationUtils.java +++ b/src/main/java/org/apache/commons/lang3/AnnotationUtils.java @@ -349,7 +349,10 @@ public class AnnotationUtils { * * <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 AnnotationUtils() { + // empty } }