mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-13 03:35:20 -04:00
Add some slight refactoring
Unfortunately it's too hard to add the tests I wanted to
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user