Skip to content

Commit 57a26e6

Browse files
committed
Fix
1 parent 00b0301 commit 57a26e6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/main/java/com/thealgorithms/datastructures/hashmap/hashing/GenericHashMapUsingArray.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ private int hashFunction(K key) {
9292
* Rehashes the map by doubling the number of buckets and re-inserting all entries.
9393
*/
9494
private void reHash() {
95-
System.out.println("Rehashing!");
9695
LinkedList<Node>[] oldBuckets = buckets;
9796
initBuckets(oldBuckets.length * 2);
9897
this.size = 0;

0 commit comments

Comments
 (0)