Merge "removing ineffective code in WifiService.java"

This commit is contained in:
Adam Powell
2012-12-03 13:37:16 -08:00
committed by Gerrit Code Review

View File

@@ -1577,7 +1577,7 @@ public class WifiService extends IWifiManager.Stub {
}
int uid = Binder.getCallingUid();
Long ident = Binder.clearCallingIdentity();
final long ident = Binder.clearCallingIdentity();
try {
mBatteryStats.noteWifiMulticastEnabled(uid);
} catch (RemoteException e) {
@@ -1613,7 +1613,7 @@ public class WifiService extends IWifiManager.Stub {
mWifiStateMachine.startFilteringMulticastV4Packets();
}
Long ident = Binder.clearCallingIdentity();
final long ident = Binder.clearCallingIdentity();
try {
mBatteryStats.noteWifiMulticastDisabled(uid);
} catch (RemoteException e) {