mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 665532 - Fix unused variable warnings in nsWifiMonitor.cpp by removing now unneeded LOG()s; r=dougt
This commit is contained in:
parent
b3f49b92ba
commit
683589351f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user