aboutsummaryrefslogtreecommitdiffstats
path: root/jsquery
diff options
context:
space:
mode:
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-02-14 19:57:53 +0100
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>2013-02-14 19:57:53 +0100
commit3e22d9df50e328b2608d9e6cdd88b976eb0ab669 (patch)
treef16a59fab9d6d66f92bc39cd30759ce33dc55ccc /jsquery
parent225edd517af7727826eb4946d2cd5b6a8c8b1344 (diff)
downloadgwtquery-3e22d9df50e328b2608d9e6cdd88b976eb0ab669.tar.gz
gwtquery-3e22d9df50e328b2608d9e6cdd88b976eb0ab669.zip
The find/replace action set abstract to interfaces which actually dont need it
Diffstat (limited to 'jsquery')
-rw-r--r--jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java b/jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java
index 0ac22ce2..cad0a1d2 100644
--- a/jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java
+++ b/jsquery/src/main/java/com/google/gwt/query/jsquery/client/GQueryOverlay.java
@@ -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(){}