From: Manuel Carrasco MoƱino Date: Tue, 2 Apr 2013 18:51:04 +0000 (+0200) Subject: remove null argument X-Git-Tag: release-1.4.0~56^2~5 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e53299462daabb7c583fc8a34dfda947847891e8;p=gwtquery.git remove null argument --- diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java index ddd9763b..e69aa07f 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/QueuePlugin.java @@ -312,7 +312,7 @@ public class QueuePlugin> extends GQuery { f.fe(elem); } else { // Run final hooks when emptying the queue, used in promises - emptyHooks(elem, name).fire(elem, name, f); + emptyHooks(elem, name).fire(elem, name); // It is the last function, remove the queue to avoid leaks (issue 132) removeData(elem, name); }