]> source.dussan.org Git - gwtquery.git/commitdiff
The find/replace action set abstract to interfaces which actually dont need it
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Thu, 14 Feb 2013 18:57:53 +0000 (19:57 +0100)
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Thu, 14 Feb 2013 18:57:53 +0000 (19:57 +0100)
jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java

index 0ac22ce219799e54196c45ae966626a5eeab469c..cad0a1d268ed459f2b9257300eaa3df1cf0441cf 100644 (file)
@@ -43,17 +43,17 @@ public abstract class GQueryOverlay implements ExportOverlay<GQuery> {
   @ExportPackage("JsQuery")
   @Export("jFunction")
   @ExportClosure()
-  public abstract interface FunctionOverlay extends ExportOverlay<Function>  {
-    public abstract void f();
-    public abstract boolean f(Event e);
-    public abstract Object f(Element e, int i);
+  public interface FunctionOverlay extends ExportOverlay<Function>  {
+    public void f();
+    public boolean f(Event e);
+    public Object f(Element e, int i);
   }
 
   @ExportPackage("JsQuery")
   @Export("jPredicate")
   @ExportClosure()
-  public abstract interface PredicateOverlay extends ExportOverlay<Predicate>  {
-    public abstract boolean f(Element e, int i);
+  public interface PredicateOverlay extends ExportOverlay<Predicate>  {
+    public boolean f(Element e, int i);
   }
 
   private GQueryOverlay(){}