diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-03-07 10:53:46 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-03-07 10:53:46 +0000 |
commit | 4f0f82ae0422f85022245d5bde496ea0bc0e7f92 (patch) | |
tree | 9d98472e830abf8346ebc1fddc1b574621130bb3 | |
parent | bd05577a99a52d7d43f74a1f3f50663e4fb5cc5a (diff) | |
download | gwtquery-4f0f82ae0422f85022245d5bde496ea0bc0e7f92.tar.gz gwtquery-4f0f82ae0422f85022245d5bde496ea0bc0e7f92.zip |
removed unused method
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsMap.java | 4 | ||||
-rwxr-xr-x | gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Widgets.java | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsMap.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsMap.java index 760326c0..2931a66a 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsMap.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/js/JsMap.java @@ -39,10 +39,6 @@ final public class JsMap<S, T> extends JavaScriptObject { return get(key.hashCode()); } - public int length() { - return c().length(); - } - public void put(S key, T val) { c().put(key.hashCode(), val); } diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Widgets.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Widgets.java index 24590ccb..e67e1ae1 100755 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Widgets.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/Widgets.java @@ -220,17 +220,13 @@ public class Widgets extends QueuePlugin<Widgets> { }
W widget = factory.create(e);
-
if (initializers != null) {
for (WidgetInitializer initializer : initializers) {
initializer.initialize(widget, e);
}
}
-
return widget;
-
}
-
/**
* Create and return a widget using the given factory and the given options
*/
|