diff options
author | Julien Dramaix <julien.dramaix@gmail.com> | 2011-05-01 21:26:41 +0000 |
---|---|---|
committer | Julien Dramaix <julien.dramaix@gmail.com> | 2011-05-01 21:26:41 +0000 |
commit | 009551373c0cdd79a8faaa0e312e327614613430 (patch) | |
tree | 1264f6e0536e1d59879f4a8de958da9282853e86 | |
parent | 9c6451b5811a6ce9b70b061433c52b38976b1561 (diff) | |
download | gwtquery-009551373c0cdd79a8faaa0e312e327614613430.tar.gz gwtquery-009551373c0cdd79a8faaa0e312e327614613430.zip |
remove deprecated methods
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/GQuery.java | 27 |
1 files changed, 1 insertions, 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<GQuery, LazyGQuery> { 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<GQuery, LazyGQuery> { return this;
}
- /**
- * Set CSS a single style property on every matched element using type-safe
- * enumerations.
- *
- * @deprecated use {@link #css(CssSetter)}
- */
- @Deprecated
- public <S, T extends TakesCssValue<S>> GQuery css(T cssProperty, S value) {
- return css(cssProperty.with(value));
- }
/**
* Set CSS a single style property on every matched element using type-safe
|