Searched refs:wifiSsid (Results 1 – 1 of 1) sorted by relevance
181 private static String trimSsid(String wifiSsid) { in trimSsid() argument182 int head = wifiSsid.startsWith("\"") ? 1 : 0; in trimSsid()183 int tail = wifiSsid.endsWith("\"") ? 1 : 0; in trimSsid()184 return wifiSsid.substring(head, wifiSsid.length() - tail); in trimSsid()