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

@@ -34,7 +34,6 @@ import com.google.inject.Singleton;
public class AndroidModule extends AbstractModule {
@Override
protected void configure() {
bind(AndroidExecutor.class).to(AndroidExecutorImpl.class);
bind(ReferenceManager.class).to(ReferenceManagerImpl.class).in(

View File

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