Remove superfluous checks

svn-id: r44258
This commit is contained in:
Willem Jan Palenstijn 2009-09-22 12:39:07 +00:00
parent 4f65994267
commit f9909bfbf5

View File

@ -255,14 +255,14 @@ public:
iterator find(const Key &key) {
uint ctr = lookup(key);
if (_storage[ctr] && _storage[ctr] != HASHMAP_DUMMY_NODE)
if (_storage[ctr])
return iterator(ctr, this);
return end();
}
const_iterator find(const Key &key) const {
uint ctr = lookup(key);
if (_storage[ctr] && _storage[ctr] != HASHMAP_DUMMY_NODE)
if (_storage[ctr])
return const_iterator(ctr, this);
return end();
}