Back out one of the changes in bebdf3413522 (bug 572618) because it's causing huge numbers of console warnings.

This commit is contained in:
L. David Baron 2010-06-18 16:29:16 -07:00
parent 9acce0dbb6
commit 4eeac25ba9

View File

@ -334,7 +334,8 @@ nsTransactionItem::RedoChildren(nsTransactionManager *aTxMgr)
nsresult result = NS_OK;
PRInt32 sz = 0;
NS_ENSURE_TRUE(mRedoStack, NS_OK);
if (!mRedoStack)
return NS_OK;
/* Redo all of the transaction items children! */
result = mRedoStack->GetSize(&sz);