Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba5f2a01 authored by Chaohui Wang's avatar Chaohui Wang
Browse files

Fix the stub SearchIndexableResourcesBase

Should be SearchIndexableData instead of Class.

Bug: 253772249
Test: TAP
Change-Id: If20eecf22a6168fe2c019bcbfea8bc8c7447fcbf
parent 8dcc7801
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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!");
    }
}