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 3bf280a4e463a94587f8e58b2d0c71c515cbfaff Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:19:51 2024 -0500 Depreacte LocaleUtils 0-argument contructor --- src/main/java/org/apache/commons/lang3/LocaleUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/LocaleUtils.java b/src/main/java/org/apache/commons/lang3/LocaleUtils.java index 93f81685b..bd6b97447 100644 --- a/src/main/java/org/apache/commons/lang3/LocaleUtils.java +++ b/src/main/java/org/apache/commons/lang3/LocaleUtils.java @@ -357,8 +357,12 @@ public class LocaleUtils { * * <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 LocaleUtils() { + // empty } }