Merge remote-tracking branch 'origin/master' into im_20201015_loinc_versioned_resourceids

This commit is contained in:
ianmarshall 2020-10-16 16:48:32 -04:00
commit 76416998ce
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) {