FixedDateTimeZone is thread-safe and immutable. @author Brian S O'Neill @since 1.0
358359360361362363364365366
zone = ref.get(); if (zone != null) { return zone; } } zone = new FixedDateTimeZone(id, null, offset, offset); iFixedOffsetCache.put(id, new SoftReference<DateTimeZone>(zone)); return zone; }
389390391392393394395396397