This commit is contained in:
jamesagnew 2020-10-16 14:52:40 -04:00
parent 66e36378c1
commit a25aa37e6a
1 changed files with 1 additions and 2 deletions

View File

@ -586,8 +586,7 @@ public abstract class BaseDateTimeDt extends BasePrimitive<Date> {
}
private TimeZone getTimeZone(String offset) {
return timezoneCache.computeIfAbsent(offset, (offsetLocal) ->
TimeZone.getTimeZone("GMT" + offsetLocal));
return timezoneCache.computeIfAbsent(offset, TimeZone::getTimeZone);
}
public BaseDateTimeDt setTimeZone(TimeZone theTimeZone) {