Skip to content

Commit 8e46c26

Browse files
committed
removed debug output
1 parent d16216e commit 8e46c26

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/Datastructure/Table/HashTable.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,12 +369,7 @@ public function remove($key): bool {
369369
unset($this->bucket[$arrayIndex]);
370370
return true;
371371
}
372-
$removed = $list->remove($key);
373-
echo $list->size();
374-
echo "\n";
375-
// $this->bucket[$arrayIndex] = $list;
376-
// var_dump($this->bucket[$arrayIndex]);
377-
return $removed;
372+
return $list->remove($key);
378373
}
379374

380375
/**

0 commit comments

Comments
 (0)