Bug 665532 - Fix unused variable warnings in nsWifiMonitor.cpp by removing now unneeded LOG()s; r=dougt

This commit is contained in:
Ed Morley 2011-08-14 10:39:20 -07:00
parent b3f49b92ba
commit 683589351f

View File

@ -170,8 +170,7 @@ NS_IMETHODIMP nsPassErrorToWifiListeners::Run()
{
LOG(("About to send error to the wifi listeners\n"));
for (PRInt32 i = 0; i < mListeners->Count(); i++) {
nsresult rv = (*mListeners)[i]->OnError(mResult);
LOG( ("... sent %d\n", rv));
(*mListeners)[i]->OnError(mResult);
}
return NS_OK;
}
@ -229,9 +228,7 @@ NS_IMETHODIMP nsCallWifiListeners::Run()
{
LOG(("About to send data to the wifi listeners\n"));
for (PRInt32 i = 0; i < mListeners->Count(); i++) {
nsresult rv = (*mListeners)[i]->OnChange(mAccessPoints->Elements(),
mAccessPoints->Length());
LOG( ("... sent %d\n", rv));
(*mListeners)[i]->OnChange(mAccessPoints->Elements(), mAccessPoints->Length());
}
return NS_OK;
}