toothpick.configuration.RuntimeCheckOffConfiguration 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;
import toothpick.config.Binding;
class RuntimeCheckOffConfiguration implements RuntimeCheckConfiguration {
@Override
public void checkIllegalBinding(Binding binding, Scope scope) {
}
@Override
public void checkCyclesStart(Class clazz, String name) {
}
@Override
public void checkCyclesEnd(Class clazz, String name) {
}
}