When you want to add a sub-objectgraph to your global object graph you use:
newObjectGraph = objectgraph.plus(new SubModule("SomeConfig"));
Now you are done with SubModule and you want to let it go (or perhaps you want to replace it with SubModule("AnotherConfig"). How would you do that? In fact do I need to do anything? Or I can simply do:
anotherNewObjectGraph = objectgraph.plus(new SubModule("AnotherConfig"));
PS: this question is based on a presentation about Dagger.1 on Android by Jake Wharton.
Specific slide that talks about this adding and removing procedure: https://speakerdeck.com/jakewharton/android-apps-with-dagger-devoxx-2013?slide=113