Loading packages/SettingsLib/src/com/android/settingslib/wifi/WifiTracker.java +7 −3 Original line number Diff line number Diff line Loading @@ -526,10 +526,14 @@ public class WifiTracker { // the given ScanResult. This is used for showing that a given AP // (ScanResult) is available via a Passpoint provider (provider friendly // name). try { WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result); if (config != null) { accessPoint.update(config); } } catch (UnsupportedOperationException e) { // Passpoint not supported on the device. } } accessPoints.add(accessPoint); Loading Loading
packages/SettingsLib/src/com/android/settingslib/wifi/WifiTracker.java +7 −3 Original line number Diff line number Diff line Loading @@ -526,10 +526,14 @@ public class WifiTracker { // the given ScanResult. This is used for showing that a given AP // (ScanResult) is available via a Passpoint provider (provider friendly // name). try { WifiConfiguration config = mWifiManager.getMatchingWifiConfig(result); if (config != null) { accessPoint.update(config); } } catch (UnsupportedOperationException e) { // Passpoint not supported on the device. } } accessPoints.add(accessPoint); Loading