diff options
author | Glen Kuhne <kuh@google.com> | 2016-05-03 11:32:02 -0700 |
---|---|---|
committer | Glen Kuhne <kuh@google.com> | 2016-05-03 11:32:02 -0700 |
commit | f55d6b141718183eba880a86714d45d8e9c503e1 (patch) | |
tree | 3ef304d3cca7795e81a5d36a3545a06158d49858 /service | |
parent | 00f5ad8bafa58232b799e5195783a444fa9168fe (diff) |
Fixed NetworkFactories being dumped twice
mNetworkFactory and mUntrustedNetworkFactory are being dumped twice. The
second time, potentially causing null exceptions.
Removed the second calls (were left over from bad rebase).
BUG=28530520
Change-Id: I3312ac83a7ea2d4027036ea85702caa74985753d
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiStateMachine.java | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/service/java/com/android/server/wifi/WifiStateMachine.java b/service/java/com/android/server/wifi/WifiStateMachine.java index 3e429ac2d..362cdd1b6 100644 --- a/service/java/com/android/server/wifi/WifiStateMachine.java +++ b/service/java/com/android/server/wifi/WifiStateMachine.java @@ -2313,9 +2313,6 @@ public class WifiStateMachine extends StateMachine implements WifiNative.WifiRss updateWifiMetrics(); mWifiMetrics.dump(fd, pw, args); pw.println(); - mNetworkFactory.dump(fd, pw, args); - mUntrustedNetworkFactory.dump(fd, pw, args); - pw.println(); mWifiConfigManager.dump(fd, pw, args); pw.println(); |