From 235a874ea1eb7e4f700e5ff596cc95209e7412c9 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 25 Jan 2024 09:24:17 -0500 Subject: [PATCH] Depreacte SystemProperties 0-argument contructor --- .../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 + } }