From d309d0de19d4b90e819f649ff955d83ef54ba3f3 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sun, 14 Sep 2014 20:03:33 -0400 Subject: [PATCH] Filtered out the wrong books of the Bible. --- .../org/crosswire/jsword/versification/VersificationUtil.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/org/crosswire/jsword/versification/VersificationUtil.kt b/app/src/main/kotlin/org/crosswire/jsword/versification/VersificationUtil.kt index 4b99dc9..a749bee 100644 --- a/app/src/main/kotlin/org/crosswire/jsword/versification/VersificationUtil.kt +++ b/app/src/main/kotlin/org/crosswire/jsword/versification/VersificationUtil.kt @@ -54,7 +54,7 @@ fun Iterator.iterable(): Iterable { fun Versification.getBooks(): List { return this.getBookIterator()!!.iterable() - .filter { VersificationUtil.INTROS.contains(it) } + .filter { !VersificationUtil.INTROS.contains(it) } } fun Versification.getBookNames(): List {