Add some slight refactoring

Unfortunately it's too hard to add the tests I wanted to
This commit is contained in:
Bradlee Speice
2014-11-22 00:21:38 -05:00
parent acbdc10116
commit 07b9d04933
4 changed files with 27 additions and 49 deletions

View File

@ -2,7 +2,6 @@ package org.bspeice.minimalbible.activity.viewer;
import android.util.Log;
import org.bspeice.minimalbible.service.lookup.DefaultVerseLookup;
import org.bspeice.minimalbible.service.lookup.VerseLookup;
import org.bspeice.minimalbible.service.manager.BookManager;
import org.crosswire.jsword.book.Book;
@ -100,6 +99,6 @@ public class BibleViewerModules {
@Provides
@Singleton
VerseLookup verseLookup(@Named("MainBook") Book b) {
return new DefaultVerseLookup(b);
return new VerseLookup(b);
}
}