diff options
author | Adam Powell <adamp@android.com> | 2012-12-03 13:37:16 -0800 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2012-12-03 13:37:16 -0800 |
commit | 568f923ba4cf522f699837bee0d8cba318343345 (patch) | |
tree | 6c54aaaa5715fea2d56a724a2248bea6476fc902 /services | |
parent | cdd03f5487d3d0a088651c90fc5122b5fc3f62b3 (diff) | |
parent | 2bea585494e14ff551eb02796b873473e8f0dd2e (diff) | |
download | frameworks_base-568f923ba4cf522f699837bee0d8cba318343345.zip frameworks_base-568f923ba4cf522f699837bee0d8cba318343345.tar.gz frameworks_base-568f923ba4cf522f699837bee0d8cba318343345.tar.bz2 |
Merge "removing ineffective code in WifiService.java"
Diffstat (limited to 'services')
-rw-r--r-- | services/java/com/android/server/WifiService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/WifiService.java b/services/java/com/android/server/WifiService.java index 98794c9..dfcc72b 100644 --- a/services/java/com/android/server/WifiService.java +++ b/services/java/com/android/server/WifiService.java @@ -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) { |