Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
sstrickx committed Jun 18, 2015
2 parents c840ecb + 3020ab3 commit 5c7879b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Binary file removed dist/YahooFinanceAPI-1.4.0.zip
Binary file not shown.
Binary file modified dist/YahooFinanceAPI-2.0.0.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions src/yahoofinance/Stock.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public StockQuote getQuote() {
*
* @param refresh indicates whether the data should be requested again to Yahoo Finance
* @return basic quotes data available for this stock
* @throws java.io.IOException
* @throws java.io.IOException when there's a connection problem
*/
public StockQuote getQuote(boolean refresh) throws IOException {
if(refresh) {
Expand Down Expand Up @@ -114,7 +114,7 @@ public StockStats getStats() {
*
* @param refresh indicates whether the data should be requested again to Yahoo Finance
* @return statistics available for this stock
* @throws java.io.IOException
* @throws java.io.IOException when there's a connection problem
*/
public StockStats getStats(boolean refresh) throws IOException {
if(refresh) {
Expand Down Expand Up @@ -154,7 +154,7 @@ public StockDividend getDividend() {
*
* @param refresh indicates whether the data should be requested again to Yahoo Finance
* @return dividend data available for this stock
* @throws java.io.IOException
* @throws java.io.IOException when there's a connection problem
*/
public StockDividend getDividend(boolean refresh) throws IOException {
if(refresh) {
Expand Down
1 change: 1 addition & 0 deletions src/yahoofinance/quotes/fx/FxQuote.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public BigDecimal getPrice() {
*
* @param refresh indicates whether the data should be requested again to Yahoo Finance
* @return the requested FX rate
* @throws java.io.IOException when there's a connection problem
*/
public BigDecimal getPrice(boolean refresh) throws IOException {
if(refresh) {
Expand Down

0 comments on commit 5c7879b

Please sign in to comment.