Correct UTC Offset at beginning/end of daylight savings time

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4185 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
hermens 18 years ago
parent 4fefa53135
commit 18144043e6

@ -204,6 +204,9 @@ public final class serverDate {
}
public static long UTCDiff() {
// DST_OFFSET is dependent on the time of the Calendar, so it has to be updated
// to get the correct current offset
thisCalendar.setTimeInMillis(System.currentTimeMillis());
long zoneOffsetHours = thisCalendar.get(Calendar.ZONE_OFFSET);
long DSTOffsetHours = thisCalendar.get(Calendar.DST_OFFSET);
return zoneOffsetHours + DSTOffsetHours;

Loading…
Cancel
Save