mirror of
https://github.com/MinimalBible/jsword-minimalbible
synced 2024-11-22 07:58:20 -05:00
Really dumb error in trying to apply a filter
This commit is contained in:
parent
021dbe2b04
commit
053283e3a8
@ -49,7 +49,7 @@ public class FilterUtil {
|
||||
List<Book> filtered = new ArrayList<Book>();
|
||||
for (Book b: books) {
|
||||
if (f.test(b)) {
|
||||
filtered.add(f);
|
||||
filtered.add(b);
|
||||
}
|
||||
}
|
||||
return filtered;
|
||||
|
Loading…
Reference in New Issue
Block a user