Fixed typo in doc comments about % and sqlite.
% means wildcard, not case insensitive in sqlite3.
This commit is contained in:
parent
59c6e36034
commit
cc759b17a4
@ -650,7 +650,7 @@ public class AppProvider extends FDroidProvider {
|
|||||||
getTableName() + ".description",
|
getTableName() + ".description",
|
||||||
};
|
};
|
||||||
|
|
||||||
// Remove duplicates, surround in % for case insensitive searching
|
// Remove duplicates, surround in % for wildcard searching
|
||||||
final Set<String> keywordSet = new HashSet<>(Arrays.asList(query.split("\\s")));
|
final Set<String> keywordSet = new HashSet<>(Arrays.asList(query.split("\\s")));
|
||||||
final String[] keywords = new String[keywordSet.size()];
|
final String[] keywords = new String[keywordSet.size()];
|
||||||
int iKeyword = 0;
|
int iKeyword = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user