From 83288de9a24fd7f65e9e731c90cee1651f62bd85 Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Sat, 23 May 2015 15:49:26 +0200 Subject: [PATCH] Fix JsInterop in 2.8-SNAPSHOT --- .../google/gwt/query/client/GQueryJsInteropTestGwt.java | 8 ++++---- pom.xml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java index 1a3ebf68..a01a9923 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java @@ -58,23 +58,23 @@ public class GQueryJsInteropTestGwt extends GWTTestCase { } } - @JsType(prototype = "Window", isNative = true) + @JsType(prototype = "Window") public interface HTMLWindow { @JsProperty String getName(); @JsProperty void setName(String name); } - @JsType(prototype = "Window", isNative = true) + @JsType(prototype = "Window") public interface HWindow { @JsProperty HDocument document(); } - @JsType(prototype = "HTMLDocument", isNative = false) + @JsType(prototype = "HTMLDocument") public interface HDocument { HElement createElement(String tag); } - @JsType(prototype = "HTMLElement", isNative = false) + @JsType(prototype = "HTMLElement") public interface HElement { @JsProperty void id(String s); } diff --git a/pom.xml b/pom.xml index ae507dda..db200cfc 100644 --- a/pom.xml +++ b/pom.xml @@ -146,8 +146,8 @@ - 2.7.0 - 2.7.0 + 2.8.0-SNAPSHOT + 2.8.0-SNAPSHOT INFO OBF -- 2.39.5