Return-Path: Delivered-To: apmail-myfaces-commits-archive@www.apache.org Received: (qmail 50054 invoked from network); 17 May 2010 13:39:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 17 May 2010 13:39:40 -0000 Received: (qmail 81331 invoked by uid 500); 17 May 2010 13:39:40 -0000 Delivered-To: apmail-myfaces-commits-archive@myfaces.apache.org Received: (qmail 81254 invoked by uid 500); 17 May 2010 13:39:40 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list commits@myfaces.apache.org Received: (qmail 81247 invoked by uid 99); 17 May 2010 13:39:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 May 2010 13:39:40 +0000 X-ASF-Spam-Status: No, hits=-1705.1 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 May 2010 13:39:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 846C32388A66; Mon, 17 May 2010 13:39:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r945146 - /myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js Date: Mon, 17 May 2010 13:39:19 -0000 To: commits@myfaces.apache.org From: werpu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100517133919.846C32388A66@eris.apache.org> Author: werpu Date: Mon May 17 13:39:19 2010 New Revision: 945146 URL: http://svn.apache.org/viewvc?rev=945146&view=rev Log: https://issues.apache.org/jira/browse/MYFACES-2721 fixing a refactoring error Modified: myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js Modified: myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js?rev=945146&r1=945145&r2=945146&view=diff ============================================================================== --- myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js (original) +++ myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js Mon May 17 13:39:19 2010 @@ -36,7 +36,7 @@ myfaces._impl.core._Runtime.extendClass( */ enqueue : function(/*function*/listener) { this._assertListener(listener); - this._callSuper("enqueue"); + this._callSuper("enqueue", listener); }, /**