Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bea5854 authored by You Kim's avatar You Kim
Browse files

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
parent 40f2f751
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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) {