findbugs is now happy

This commit is contained in:
Athou
2014-08-14 08:38:13 +02:00
parent 62a8e8c119
commit 0ff477579b
3 changed files with 11 additions and 4 deletions

View File

@@ -112,7 +112,7 @@ public class FeedEntryStatusDAO extends GenericDAO<FeedEntryStatus> {
List<FeedEntryStatus> statuses = query.list(status);
for (FeedEntryStatus status : statuses) {
status = handleStatus(user, status, status.getSubscription(), status.getEntry());
status = fetchTags(user, status);
fetchTags(user, status);
}
return lazyLoadContent(includeContent, statuses);
}