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:
You Kim
2012-10-23 22:56:51 +09:00
parent 40f2f751ac
commit 2bea585494

View File

@@ -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) {