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 e56f42ef888445320ac8dbd4ac9948621ec7f4b1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:21:16 2024 -0500 Depreacte RandomUtils 0-argument contructor --- src/main/java/org/apache/commons/lang3/RandomUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/RandomUtils.java b/src/main/java/org/apache/commons/lang3/RandomUtils.java index 66379c358..19d71a3df 100644 --- a/src/main/java/org/apache/commons/lang3/RandomUtils.java +++ b/src/main/java/org/apache/commons/lang3/RandomUtils.java @@ -234,7 +234,11 @@ public class RandomUtils { * This constructor is public to permit tools that require a JavaBean * instance to operate. * </p> + * + * @deprecated TODO Make private in 4.0. */ + @Deprecated public RandomUtils() { + // empty } }