Bug 456099 followup: Remove unneeded & unused variables introduced by earlier outparam-deletion patch. r=smaug

This commit is contained in:
Daniel Holbert 2010-02-02 12:05:22 -08:00
parent 893023f46a
commit 868688bc4b

View File

@ -108,16 +108,12 @@ NS_IMETHODIMP nsSmartCardEvent::SetTarget(nsIDOMEventTarget *aTarget)
NS_IMETHODIMP_(PRBool ) nsSmartCardEvent::IsDispatchStopped()
{
PRBool isDispatchPrevented = nsnull;
PRBool * aIsDispatchPrevented = &isDispatchPrevented;
NS_ASSERTION(mPrivate, "SmartCardEvent called without Init");
return mPrivate->IsDispatchStopped();
}
NS_IMETHODIMP_(nsEvent*) nsSmartCardEvent::GetInternalNSEvent()
{
nsEvent* nSEvent = nsnull;
nsEvent** aNSEvent = &nSEvent;
NS_ASSERTION(mPrivate, "SmartCardEvent called without Init");
return mPrivate->GetInternalNSEvent();
}