Skip to content

Commit

Permalink
Update Ex11_18.java
Browse files Browse the repository at this point in the history
  • Loading branch information
castello authored Aug 3, 2020
1 parent c850067 commit 63696e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions javajungsuk_basic_src/ch11/src/Ex11_18.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ public static void main(String[] args) {
while(it.hasNext()) {
Map.Entry entry = (Map.Entry)it.next();
int value = (int)entry.getValue();
System.out.println(entry.getKey() + " : "
+ printBar('#', value) + " " + value );
System.out.println(entry.getKey() + " : " + printBar('#', value) + " " + value );
}
} // main

Expand Down

0 comments on commit 63696e7

Please sign in to comment.