Depreacte DurationUtils 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:37:49 -05:00
parent 91f4ed32d2
commit a6cbd6596c
1 changed files with 9 additions and 0 deletions

View File

@ -219,4 +219,13 @@ public class DurationUtils {
return ObjectUtils.defaultIfNull(duration, Duration.ZERO);
}
/**
* Make private in 4.0.
*
* @deprecated TODO Make private in 4.0.
*/
@Deprecated
public DurationUtils() {
// empty
}
}