summaryrefslogtreecommitdiffstats
path: root/service/java/com/android/server/wifi/WifiMonitor.java
diff options
context:
space:
mode:
authorRoshan Pius <rpius@google.com>2017-03-21 14:10:56 -0700
committerRoshan Pius <rpius@google.com>2017-03-28 10:09:52 -0700
commit448eded66cf274be7cad14b9d40c342175b6c4b2 (patch)
tree3d18fdb7105a90faa27e13f10e2316b555b9d268 /service/java/com/android/server/wifi/WifiMonitor.java
parentbb2fdf553e6580923e1dc3e6ac90ca777c5d7226 (diff)
downloadandroid_frameworks_opt_net_wifi-448eded66cf274be7cad14b9d40c342175b6c4b2.tar.gz
android_frameworks_opt_net_wifi-448eded66cf274be7cad14b9d40c342175b6c4b2.tar.bz2
android_frameworks_opt_net_wifi-448eded66cf274be7cad14b9d40c342175b6c4b2.zip
WifiStateMachine: Remove unused code
Remove the deprecated events/API handling in WSM: 1. WifiMonitor.SSID_TEMP_DISABLED 2. WifiMonitor.SSID_RENABLED 3. WifiMonitor.DRIVER_HUNG Also, Removed the pingSupplicant handling as that API has now been removed. Bug: 36404409 Test: Compiles Change-Id: I3762bea36f682eac0694e667addc919e7db6fcaa Merged-In: I3762bea36f682eac0694e667addc919e7db6fcaa
Diffstat (limited to 'service/java/com/android/server/wifi/WifiMonitor.java')
-rw-r--r--service/java/com/android/server/wifi/WifiMonitor.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/service/java/com/android/server/wifi/WifiMonitor.java b/service/java/com/android/server/wifi/WifiMonitor.java
index c4f0bdedb..6c8ac813f 100644
--- a/service/java/com/android/server/wifi/WifiMonitor.java
+++ b/service/java/com/android/server/wifi/WifiMonitor.java
@@ -72,13 +72,6 @@ public class WifiMonitor {
public static final int WPS_OVERLAP_EVENT = BASE + 10;
/* WPS timeout detected */
public static final int WPS_TIMEOUT_EVENT = BASE + 11;
- /* Driver was hung */
- public static final int DRIVER_HUNG_EVENT = BASE + 12;
- /* SSID was disabled due to auth failure or excessive
- * connection failures */
- public static final int SSID_TEMP_DISABLED = BASE + 13;
- /* SSID reenabled by supplicant */
- public static final int SSID_REENABLED = BASE + 14;
/* Request Identity */
public static final int SUP_REQUEST_IDENTITY = BASE + 15;