Remove Unused Code From EthernetNetworkFactory
Test: atest EthernetNetworkFactoryTest Change-Id: Ibe0190b3108dca644da2d67bd107954cb26f41ce
This commit is contained in:
@@ -423,10 +423,6 @@ public class EthernetNetworkFactory extends NetworkFactory {
|
||||
}
|
||||
}
|
||||
|
||||
boolean satisfied(NetworkCapabilities requestedCapabilities) {
|
||||
return requestedCapabilities.satisfiedByNetworkCapabilities(mCapabilities);
|
||||
}
|
||||
|
||||
boolean isRestricted() {
|
||||
return !mCapabilities.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_RESTRICTED);
|
||||
}
|
||||
@@ -569,22 +565,6 @@ public class EthernetNetworkFactory extends NetworkFactory {
|
||||
mLinkProperties.clear();
|
||||
}
|
||||
|
||||
private void updateAgent() {
|
||||
if (mNetworkAgent == null) return;
|
||||
if (DBG) {
|
||||
Log.i(TAG, "Updating mNetworkAgent with: " +
|
||||
mCapabilities + ", " +
|
||||
mLinkProperties);
|
||||
}
|
||||
mNetworkAgent.sendNetworkCapabilities(mCapabilities);
|
||||
mNetworkAgent.sendLinkPropertiesImpl(mLinkProperties);
|
||||
|
||||
// As a note, getNetworkScore() is fairly expensive to calculate. This is fine for now
|
||||
// since the agent isn't updated frequently. Consider caching the score in the future if
|
||||
// agent updating is required more often
|
||||
mNetworkAgent.sendNetworkScore(getNetworkScore());
|
||||
}
|
||||
|
||||
private static void provisionIpClient(IIpClient ipClient, IpConfiguration config,
|
||||
String tcpBufferSizes) {
|
||||
if (config.getProxySettings() == ProxySettings.STATIC ||
|
||||
|
||||
Reference in New Issue
Block a user