You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/04/04 11:49:19 UTC

svn commit: r1828323 - /myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js

Author: lofwyr
Date: Wed Apr  4 11:49:18 2018
New Revision: 1828323

URL: http://svn.apache.org/viewvc?rev=1828323&view=rev
Log:
MYFACES-4219: JavaScript: method parameter should not be named as "arguments"

Modified:
    myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js

Modified: myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js?rev=1828323&r1=1828322&r2=1828323&view=diff
==============================================================================
--- myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js (original)
+++ myfaces/core/branches/2.3.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/engine/IFrame.js Wed Apr  4 11:49:18 2018
@@ -42,19 +42,19 @@ _MF_CLS(_PFX_XHR + "engine.IFrame", myfa
              * constructor which shifts the arguments
              * to the protected properties of this clas
              *
-             * @param arguments
+             * @param args
              */
-            constructor_: function (arguments) {
+            constructor_: function (args) {
                 //we fetch in the standard arguments
 
-                this._callSuper("constructor", arguments);
+                this._callSuper("constructor", args);
 
                 this._initDefaultFinalizableFields();
                 //this._requestHeader = {};
 
                 this._XHRConst = myfaces._impl.xhrCore.engine.XhrConst;
 
-                this._Lang.applyArgs(this, arguments);
+                this._Lang.applyArgs(this, args);
                 this.readyState = this._XHRConst.READY_STATE_UNSENT;
                 this._startTimeout();
             },