Bug 723534 - Remove dead default cases. r=ehsan.

This commit is contained in:
Rafael Ávila de Espíndola 2012-02-24 08:36:53 -05:00
Родитель db5c0ad548
Коммит 7de7de1cff
2 изменённых файлов: 2 добавлений и 11 удалений

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

@ -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*