removing ineffective code in WifiService.java
no need to use wrapper class Long. I think this looks like typo. However, this fix will give us more space. WifiService.class 33646 -> 33541. Change-Id: Ia3a57285170315a9563c6ccf687424fe95ccc2df
This commit is contained in:
@@ -1534,7 +1534,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) {
|
||||
@@ -1570,7 +1570,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) {
|
||||
|
||||
Reference in New Issue
Block a user