Fix the stub SearchIndexableResourcesBase

Should be SearchIndexableData instead of Class.

Bug: 253772249
Test: TAP
Change-Id: If20eecf22a6168fe2c019bcbfea8bc8c7447fcbf
This commit is contained in:
Chaohui Wang
2022-10-16 14:15:15 +08:00
parent 8dcc78019d
commit ba5f2a0173

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