Removed override annotations from overridden abstract methods.

This commit is contained in:
akwizgran
2013-05-15 12:38:43 +01:00
parent 9e35e96ce4
commit fd5dcd4893
18 changed files with 6 additions and 24 deletions

View File

@@ -22,7 +22,6 @@ public class TestDatabaseModule extends AbstractModule {
this.config = new TestDatabaseConfig(dir, maxSize);
}
@Override
protected void configure() {
bind(DatabaseConfig.class).toInstance(config);
}

View File

@@ -10,7 +10,6 @@ import com.google.inject.AbstractModule;
public class TestLifecycleModule extends AbstractModule {
@Override
protected void configure() {
bind(LifecycleManager.class).toInstance(new LifecycleManager() {

View File

@@ -6,7 +6,6 @@ import com.google.inject.AbstractModule;
public class TestUiModule extends AbstractModule {
@Override
protected void configure() {
bind(UiCallback.class).toInstance(new UiCallback() {