Bug 1097271 - remove unused ptr variable from nsClassHashtable::RemoveAndForget; r=mccr8

This commit is contained in:
Nathan Froyd 2014-11-11 16:47:29 -05:00
parent 6cca8b6961
commit be4bc6db65

View File

@ -121,7 +121,6 @@ void
nsClassHashtable<KeyClass, T>::RemoveAndForget(KeyType aKey, nsAutoPtr<T>& aOut)
{
aOut = nullptr;
nsAutoPtr<T> ptr;
typename base_type::EntryType* ent = this->GetEntry(aKey);
if (!ent) {