We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 366e062 commit ca8bd4eCopy full SHA for ca8bd4e
1 file changed
…ellokoding/java/lang/HashMapExample.java …ing/java/collections/HashMapExample.javajava-examples/java-core/src/main/java/com/hellokoding/java/lang/HashMapExample.java renamed to java-examples/java-core/src/main/java/com/hellokoding/java/collections/HashMapExample.java
@@ -1,4 +1,4 @@
1
-package com.hellokoding.java.lang;
+package com.hellokoding.java.collections;
2
3
4
import java.util.*;
@@ -31,7 +31,7 @@ public static void main(String args[]) {
31
map.replace("k2", 20);
32
System.out.println(map); // {k1=1, k2=2}
33
34
- // remove entry
+ // remove entries
35
map.remove("k2");
36
System.out.println(map); // {k1=1}
37
map.clear();
0 commit comments