return an empty set if no items are found

pull/42/head
Zlatin Balevsky 2020-03-10 12:43:49 +00:00
parent e9f00c2995
commit ed04c40420
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class FeedManager {
}
public Set<FeedItem> getFeedItems(Persona persona) {
feedItems.get(persona)
feedItems.getOrDefault(persona, Collections.emptySet())
}
public List<Feed> getFeedsToUpdate() {