Reviewers: jbrosenberg,

Description:
Removes @Override annotation from implemented interface methods.


Please review this at http://gwt-code-reviews.appspot.com/1343802/show

Affected files:
  M dev/core/src/com/google/gwt/core/ext/GeneratorContextExtWrapper.java
  M dev/core/src/com/google/gwt/dev/javac/StandardGeneratorContext.java
  M user/src/com/google/gwt/editor/client/impl/AbstractEditorContext.java
  M user/src/com/google/gwt/editor/client/testing/FakeEditorContext.java
  M user/test/com/google/gwt/requestfactory/client/ui/EditorTest.java


Index: dev/core/src/com/google/gwt/core/ext/GeneratorContextExtWrapper.java
===================================================================
--- dev/core/src/com/google/gwt/core/ext/GeneratorContextExtWrapper.java (revision 9677) +++ dev/core/src/com/google/gwt/core/ext/GeneratorContextExtWrapper.java (working copy)
@@ -88,7 +88,6 @@
     return false;
   }

-  @Override
   public boolean isProdMode() {
     throw new UnsupportedOperationException(
         "isProdMode is only available from GeneratorContextExt.");
Index: dev/core/src/com/google/gwt/dev/javac/StandardGeneratorContext.java
===================================================================
--- dev/core/src/com/google/gwt/dev/javac/StandardGeneratorContext.java (revision 9677) +++ dev/core/src/com/google/gwt/dev/javac/StandardGeneratorContext.java (working copy)
@@ -567,7 +567,6 @@
     return generatorResultCachingEnabled;
   }

-  @Override
   public boolean isProdMode() {
     return isProdMode;
   }
Index: user/src/com/google/gwt/editor/client/impl/AbstractEditorContext.java
===================================================================
--- user/src/com/google/gwt/editor/client/impl/AbstractEditorContext.java (revision 9677) +++ user/src/com/google/gwt/editor/client/impl/AbstractEditorContext.java (working copy)
@@ -132,7 +132,6 @@
     visitor.endVisit(this);
   }

-  @Override
   public void traverseSyntheticCompositeEditor(EditorVisitor visitor) {
     if (asCompositeEditor() == null) {
       throw new IllegalStateException();
Index: user/src/com/google/gwt/editor/client/testing/FakeEditorContext.java
===================================================================
--- user/src/com/google/gwt/editor/client/testing/FakeEditorContext.java (revision 9677) +++ user/src/com/google/gwt/editor/client/testing/FakeEditorContext.java (working copy)
@@ -126,7 +126,6 @@
   /**
    * No-op.
    */
-  @Override
   public void traverseSyntheticCompositeEditor(EditorVisitor visitor) {
   }
 }
Index: user/test/com/google/gwt/requestfactory/client/ui/EditorTest.java
===================================================================
--- user/test/com/google/gwt/requestfactory/client/ui/EditorTest.java (revision 9677) +++ user/test/com/google/gwt/requestfactory/client/ui/EditorTest.java (working copy)
@@ -56,7 +56,6 @@
     protected final SimpleEditor<String> userName = SimpleEditor.of();
     RequestContext ctx;

-    @Override
     public void setRequestContext(RequestContext ctx) {
       this.ctx = ctx;
     }


--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to