Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
sstrickx committed Mar 10, 2015
2 parents f7f45c2 + aa55b20 commit 527cf7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file added dist/YahooFinanceAPI-1.2.3.zip
Binary file not shown.
4 changes: 3 additions & 1 deletion src/yahoofinance/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ private static String getDividendDateFormat(String date) {
return "dd-MMM-yy";
} else if (date.matches("[0-9]-...-[0-9][0-9]")) {
return "d-MMM-yy";
} else {
} else if (date.matches("...[ ]+[0-9]+")) {
return "MMM d";
} else {
return "M/d/yy";
}
}

Expand Down

0 comments on commit 527cf7e

Please sign in to comment.