SUPPORT-9337: fix

This commit is contained in:
adel.ka 2025-08-21 12:49:43 +03:00
parent de194e4bb2
commit f206735c2e

View file

@ -18,7 +18,7 @@ public final class DateUtils {
public static String getFormattedClientDate(Timestamp timestamp, String clientTimeZone) { public static String getFormattedClientDate(Timestamp timestamp, String clientTimeZone) {
if (timestamp == null) { if (timestamp == null) {
return ""; throw new IllegalArgumentException("Timestamp parameter is required");
} }
ZoneId zoneId; ZoneId zoneId;