Merge "More concisely export whether we have a "tetherable configuration"" am: 1f2437c65a am: b0949a3ede am: e7234fc716

am: 157ac7a76a

Change-Id: I290df5269739bc7fb5ebc8614a96c38bf7faf367
This commit is contained in:
Erik Kline
2017-01-23 07:30:22 +00:00
committed by android-build-merger

View File

@@ -3121,10 +3121,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
Settings.Global.TETHER_SUPPORTED, defaultVal) != 0)
&& !mUserManager.hasUserRestriction(UserManager.DISALLOW_CONFIG_TETHERING);
return tetherEnabledInSettings && mUserManager.isAdminUser() &&
((mTethering.getTetherableUsbRegexs().length != 0 ||
mTethering.getTetherableWifiRegexs().length != 0 ||
mTethering.getTetherableBluetoothRegexs().length != 0) &&
mTethering.getUpstreamIfaceTypes().length != 0);
mTethering.hasTetherableConfiguration();
}
@Override