You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using a static Arraylist like :
private static List sColorSuggestions =
new ArrayList<>(Arrays.asList(
new ColorSuggestion("green"),
new ColorSuggestion("blue"),
....));'
To use a list with the most recent searches as suggestions.
The text was updated successfully, but these errors were encountered:
Instead of using a static Arraylist like :
private static List sColorSuggestions =
new ArrayList<>(Arrays.asList(
new ColorSuggestion("green"),
new ColorSuggestion("blue"),
....));'
To use a list with the most recent searches as suggestions.
The text was updated successfully, but these errors were encountered: