Merge "Remove feature flags of WiFi Sharing feature"

This commit is contained in:
TreeHugger Robot
2019-02-18 02:42:33 +00:00
committed by Android (Google) Code Review
6 changed files with 27 additions and 43 deletions

View File

@@ -534,8 +534,7 @@ public class WifiDetailPreferenceController extends AbstractPreferenceController
* Returns whether the user can share the network represented by this preference with QR code.
*/
private boolean canShareNetwork() {
return mAccessPoint.getConfig() != null && FeatureFlagUtils.isEnabled(mContext,
FeatureFlags.WIFI_SHARING);
return mAccessPoint.getConfig() != null;
}
/**