Skip to content

Commit

Permalink
fixed files form Time #19
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent f8368fd commit e068415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/Time/19/org/joda/time/DateTimeZone.java
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ public int getOffsetFromLocal(long instantLocal) {
return offsetLocal;
}
}
} else if (offsetLocal > 0) {
} else if (offsetLocal >= 0) {
long prev = previousTransition(instantAdjusted);
if (prev < instantAdjusted) {
int offsetPrev = getOffset(prev);
Expand Down

0 comments on commit e068415

Please sign in to comment.