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
Родитель 8070481227
Коммит 4ff740e5b9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

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