Limited number of search items in search bar

This commit is contained in:
CappielloAntonio 2021-04-21 14:37:30 +02:00
parent 55c335d7fc
commit fa70039ff5
2 changed files with 3 additions and 3 deletions

View file

@ -80,10 +80,10 @@ public class RecentSearchRepository {
}
}
public List<String> getRecentSearchSuggestion() {
public List<String> getRecentSearchSuggestion(int limit) {
List<String> recent = new ArrayList<>();
RecentThreadSafe suggestionsThread = new RecentThreadSafe(recentSearchDao,10);
RecentThreadSafe suggestionsThread = new RecentThreadSafe(recentSearchDao,limit);
Thread thread = new Thread(suggestionsThread);
thread.start();