Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aaac1dd6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "[OWE] Rename isOweSupported to isEnhancedOpenSupported"

parents 0970be53 68cf696b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29980,8 +29980,8 @@ package android.net.wifi {
    method public boolean is5GHzBandSupported();
    method @Deprecated public boolean isDeviceToApRttSupported();
    method public boolean isEasyConnectSupported();
    method public boolean isEnhancedOpenSupported();
    method public boolean isEnhancedPowerReportingSupported();
    method public boolean isOweSupported();
    method public boolean isP2pSupported();
    method public boolean isPreferredNetworkOffloadSupported();
    method @Deprecated public boolean isScanAlwaysAvailable();
+1 −1
Original line number Diff line number Diff line
@@ -1068,7 +1068,7 @@ public class WifiTracker implements LifecycleObserver, OnStart, OnStop, OnDestro
        }

        // Get and cache advanced capabilities
        final boolean isOweSupported = mWifiManager.isOweSupported();
        final boolean isOweSupported = mWifiManager.isEnhancedOpenSupported();
        final boolean isSaeSupported = mWifiManager.isWpa3SaeSupported();
        final boolean isSuiteBSupported = mWifiManager.isWpa3SuiteBSupported();

+1 −1
Original line number Diff line number Diff line
@@ -4524,7 +4524,7 @@ public class WifiManager {
    /**
     * @return true if this device supports Wi-Fi Enhanced Open (OWE)
     */
    public boolean isOweSupported() {
    public boolean isEnhancedOpenSupported() {
        return isFeatureSupported(WIFI_FEATURE_OWE);
    }