Merge "Remove the usage of SystemProperties.set()" am: fe1f37de9c am: 1ed76ebfe8 am: 5382021e07 am: 85cc3c889c

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1465504

Change-Id: I8e9e35a830f2329a94eb6da93ea2fb17e912dd00
This commit is contained in:
Chiachang Wang
2020-10-21 08:31:49 +00:00
committed by Automerger Merge Worker

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);
}
}