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 + } }