Remove some null-checks due to infallible new, no bug, r=me

This commit is contained in:
David Zbarsky
2013-06-26 14:04:13 -07:00
parent a5df68d99a
commit e66ffce5db
2 changed files with 0 additions and 5 deletions

View File

@@ -72,9 +72,6 @@ BlockingResourceBase::BlockingResourceBase(
NS_RUNTIMEABORT("can't initialize blocking resource static members");
mDDEntry = new BlockingResourceBase::DeadlockDetectorEntry(aName, aType);
if (!mDDEntry)
NS_RUNTIMEABORT("can't allocated deadlock detector entry");
mChainPrev = 0;
sDeadlockDetector->Add(mDDEntry);
}