Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
crazzyghost committed Apr 16, 2020
1 parent 1dc98b3 commit 59becd8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import com.crazzyghost.alphavantage.UrlExtractor;
import com.crazzyghost.alphavantage.cryptocurrency.input.CryptoRequest;
import com.crazzyghost.alphavantage.cryptocurrency.output.CryptoResponse;
import com.crazzyghost.alphavantage.exchangerate.ExchangeRateResponse;
import com.crazzyghost.alphavantage.parameters.Function;
import com.squareup.moshi.JsonAdapter;
import com.squareup.moshi.Moshi;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ private ExchangeRateRequest(Builder builder){
this.to_currency = builder.toCurrency;
}

public Function getFunction(){
return this.function;
}

public String getFromCurrency(){
return this.from_currency;
}

public String getToCurrency(){
return this.to_currency;
}

public static Builder builder(){
return new Builder();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.crazzyghost.alphavantage.exchangerate;

import com.crazzyghost.alphavantage.AlphaVantageException;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
Expand Down

0 comments on commit 59becd8

Please sign in to comment.