Merge "Fix isFeatureEnabled namespace and overload usage"

This commit is contained in:
Treehugger Robot
2023-05-08 03:19:27 +00:00
committed by Gerrit Code Review
6 changed files with 15 additions and 15 deletions

View File

@@ -2077,12 +2077,12 @@ public class ConnectivityServiceTest {
}
@Override
public boolean isFeatureEnabled(Context context, String name, boolean defaultEnabled) {
public boolean isFeatureEnabled(Context context, String name) {
switch (name) {
case ConnectivityFlags.NO_REMATCH_ALL_REQUESTS_ON_REGISTER:
return true;
default:
return super.isFeatureEnabled(context, name, defaultEnabled);
return super.isFeatureEnabled(context, name);
}
}