Bug 444824. Remove useless assignment. r+sr=peterv

This commit is contained in:
Boris Zbarsky
2008-07-17 09:34:17 -04:00
parent c7c695f300
commit 01b52e5587

View File

@@ -335,7 +335,7 @@ nsINode::GetTextEditorRootContent(nsIEditor** aEditor)
continue;
nsCOMPtr<nsIEditor> editor;
nsresult rv = editableElement->GetEditor(getter_AddRefs(editor));
editableElement->GetEditor(getter_AddRefs(editor));
NS_ENSURE_TRUE(editor, nsnull);
nsIContent* rootContent = GetEditorRootContent(editor);
if (aEditor)