Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichalek committed Nov 5, 2015
1 parent 03d7812 commit ff41bf2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -840,7 +840,7 @@ public java.util.Date parseTimestamp(int type, String value) {
public TimeZone getTimeZone(String value) {
TimeZone tz = TimeZone.getTimeZone("GMT" + value); // try as an offset. ("-05:00")
if (tz.getRawOffset() == 0) {
tz = TimeZone.getTimeZone(value); // try as a raw code. e.g. "EST."
tz = TimeZone.getTimeZone(value); // try as a raw code. e.g. "EST"
}
return tz;
}
Expand Down

0 comments on commit ff41bf2

Please sign in to comment.