mirror of
https://github.com/MinimalBible/MinimalBible-Legacy
synced 2024-11-15 20:48:43 -05:00
Try once more to fix the NPE on tests.
This commit is contained in:
parent
78997f704f
commit
a7e185690e
@ -58,11 +58,13 @@ public class MinimalBible extends Application {
|
||||
* @param o The object to be injected
|
||||
*/
|
||||
public void inject(Object o) {
|
||||
getObjGraph().inject(o);
|
||||
}
|
||||
|
||||
public ObjectGraph getObjGraph() {
|
||||
if (graph == null) {
|
||||
graph = ObjectGraph.create(MinimalBibleModules.class);
|
||||
}
|
||||
graph.inject(o);
|
||||
return graph;
|
||||
}
|
||||
|
||||
public ObjectGraph getObjGraph() { return graph; }
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user