From 009551373c0cdd79a8faaa0e312e327614613430 Mon Sep 17 00:00:00 2001 From: Julien Dramaix Date: Sun, 1 May 2011 21:26:41 +0000 Subject: [PATCH] remove deprecated methods --- .../com/google/gwt/query/client/GQuery.java | 27 +------------------ 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java index 2124615a..3d0cd66c 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java @@ -1009,22 +1009,7 @@ public class GQuery implements Lazy { return bindOrFire(Event.ONCLICK, null, f); } - /** - * @deprecated use innerHeight() - */ - @Deprecated - public int clientHeight() { - return innerHeight(); - } - - /** - * @deprecated use innerWidth() - */ - @Deprecated - public int clientWidth() { - return innerWidth(); - } - + /** * Clone matched DOM Elements and select the clones. This is useful for moving * copies of the elements to another location in the DOM. @@ -1303,16 +1288,6 @@ public class GQuery implements Lazy { return this; } - /** - * Set CSS a single style property on every matched element using type-safe - * enumerations. - * - * @deprecated use {@link #css(CssSetter)} - */ - @Deprecated - public > GQuery css(T cssProperty, S value) { - return css(cssProperty.with(value)); - } /** * Set CSS a single style property on every matched element using type-safe -- 2.39.5