Merge "Fix the stub SearchIndexableResourcesBase"

This commit is contained in:
Chaohui Wang
2022-10-19 05:53:58 +00:00
committed by Android (Google) Code Review

View File

@@ -24,11 +24,11 @@ import java.util.Collection;
public class SearchIndexableResourcesBase implements SearchIndexableResources {
@Override
public Collection<Class> getProviderValues() {
public Collection<SearchIndexableData> getProviderValues() {
throw new RuntimeException("STUB!");
}
public void addIndex(Class indexClass) {
public void addIndex(SearchIndexableData indexClass) {
throw new RuntimeException("STUB!");
}
}