Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sivakumar00 committed Jun 28, 2018
1 parent b7a4b13 commit e309fb6
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 40 deletions.
114 changes: 76 additions & 38 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main/java/com/easycurrency/EasyCurrency.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
import java.io.IOException;

public class EasyCurrency {
static String API_ENDPOINT="https://free.currencyconverterapi.com/api/v5/convert?q=";


private static double convertCurrency(String from, String to) {

private static double convertCurrency(String from, String to) {

String API_ENDPOINT="https://free.currencyconverterapi.com/api/v5/convert?q=";
String reqString = from + "_" + to.toUpperCase();

HttpClient client = new DefaultHttpClient();
Expand Down

0 comments on commit e309fb6

Please sign in to comment.