Depreacte SystemProperties 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:24:17 -05:00
parent 02a16cbda0
commit 235a874ea1
1 changed files with 10 additions and 0 deletions

View File

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