Skip to content

Commit 78500ad

Browse files
author
Giorgio Momigliano
authored
Minor fixes
1 parent 74bdc9d commit 78500ad

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ public static void main(String...args) {
1919
2020
System.out.print(key + " ");
2121
22+
System.out.println();
23+
2224
// Get wanted value using a key found in the KeySet
2325
onlyMap.get("Volume");
2426
2527
// Some responses have more than 1 map - the List must be traversed in these cases.
2628
String otherRawResponse = wrapper.getBalances();
2729
List<HashMap<String, String>> allBalancesMapList = Bittrex.getMapsFromResponse(otherRawResponse);
2830
29-
for(HashMap<String, String> map : responseMapList)
31+
for(HashMap<String, String> map : allBalancesMapList)
3032
31-
System.out.println("\n" + map);
33+
System.out.println(map);
3234
3335
// And then the wanted map can be used
3436

0 commit comments

Comments
 (0)