Merge "Remove the usage of SystemProperties.set()"

This commit is contained in:
Chiachang Wang
2020-10-21 07:01:38 +00:00
committed by Gerrit Code Review

View File

@@ -38,9 +38,4 @@ public class MockableSystemProperties {
public void setTcpInitRwnd(int value) {
NetworkProperties.tcp_init_rwnd(value);
}
// TODO(b/33308258): SystemProperties.set() will not be accessible if ConnectivityService
// becomes a mainline module. Remove it and replace the usage after removing net.dns*.
public void set(String key, String value) {
SystemProperties.set(key, value);
}
}