Fix the stub SearchIndexableResourcesBase
Should be SearchIndexableData instead of Class. Bug: 253772249 Test: TAP Change-Id: If20eecf22a6168fe2c019bcbfea8bc8c7447fcbf
This commit is contained in:
@@ -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!");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user