Bug 1387143 followup. Remove assertion that does not seem to hold and causes a CLOSED TREE. r=bzbarsky

This commit is contained in:
Boris Zbarsky 2018-05-08 15:04:53 -04:00
Родитель 59f1e53c7c
Коммит 7ee1a709e8
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -3347,9 +3347,7 @@ Selection::AddSelectionListener(nsISelectionListener* aNewListener)
void
Selection::RemoveSelectionListener(nsISelectionListener* aListenerToRemove)
{
DebugOnly<bool> found =
mSelectionListeners.RemoveElement(aListenerToRemove); // Releases
MOZ_ASSERT(found, "Removing a nonexistent listener?");
mSelectionListeners.RemoveElement(aListenerToRemove); // Releases
}
Element*