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 235a874ea1eb7e4f700e5ff596cc95209e7412c9 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 09:24:17 2024 -0500 Depreacte SystemProperties 0-argument contructor --- src/main/java/org/apache/commons/lang3/SystemProperties.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/SystemProperties.java b/src/main/java/org/apache/commons/lang3/SystemProperties.java index eaff144cb..7358779a2 100644 --- a/src/main/java/org/apache/commons/lang3/SystemProperties.java +++ b/src/main/java/org/apache/commons/lang3/SystemProperties.java @@ -852,4 +852,14 @@ public final class SystemProperties { public static String getUserTimezone() { return getProperty(USER_TIMEZONE); } + + /** + * Make private in 4.0. + * + * @deprecated TODO Make private in 4.0. + */ + @Deprecated + public SystemProperties() { + // empty + } }