Skip to content

Commit

Permalink
removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
doganoo committed Sep 28, 2019
1 parent d16216e commit 8e46c26
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Datastructure/Table/HashTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,7 @@ public function remove($key): bool {
unset($this->bucket[$arrayIndex]);
return true;
}
$removed = $list->remove($key);
echo $list->size();
echo "\n";
// $this->bucket[$arrayIndex] = $list;
// var_dump($this->bucket[$arrayIndex]);
return $removed;
return $list->remove($key);
}

/**
Expand Down

0 comments on commit 8e46c26

Please sign in to comment.