зеркало из https://github.com/mozilla/gecko-dev.git
Bug 723534 - Remove dead default cases. r=ehsan.
This commit is contained in:
Родитель
db5c0ad548
Коммит
7de7de1cff
|
@ -960,9 +960,6 @@ nsGenericHTMLElement::InsertAdjacentHTML(const nsAString& aPosition,
|
|||
case eAfterEnd:
|
||||
destination->InsertBefore(fragment, GetNextSibling(), &rv);
|
||||
break;
|
||||
default:
|
||||
NS_NOTREACHED("Bad position.");
|
||||
break;
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
|
|
@ -2200,11 +2200,8 @@ nsSMILTimedElement::GetNextMilestone(nsSMILMilestone& aNextMilestone) const
|
|||
|
||||
case STATE_POSTACTIVE:
|
||||
return false;
|
||||
|
||||
default:
|
||||
NS_ABORT_IF_FALSE(false, "Invalid element state");
|
||||
return false;
|
||||
}
|
||||
MOZ_NOT_REACHED("Invalid element state");
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -2275,11 +2272,8 @@ nsSMILTimedElement::GetEffectiveBeginInstance() const
|
|||
const nsSMILInterval* prevInterval = GetPreviousInterval();
|
||||
return prevInterval ? prevInterval->Begin() : nsnull;
|
||||
}
|
||||
|
||||
default:
|
||||
NS_NOTREACHED("Invalid element state");
|
||||
return nsnull;
|
||||
}
|
||||
MOZ_NOT_REACHED("Invalid element state");
|
||||
}
|
||||
|
||||
const nsSMILInterval*
|
||||
|
|
Загрузка…
Ссылка в новой задаче