toothpick.configuration.MultipleRootScopeCheckOffConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toothpick-runtime Show documentation
Show all versions of toothpick-runtime Show documentation
'Main Toothpick implementation'
package toothpick.configuration;
import toothpick.Scope;
/**
* Dummy implementation of the {@link MultipleRootScopeCheckConfiguration} strategy.
*/
class MultipleRootScopeCheckOffConfiguration implements MultipleRootScopeCheckConfiguration {
@Override public void checkMultipleRootScopes(Scope scope) {
}
@Override public void onScopeForestReset() {
}
}