diff options
author | Yongwoo Jeon <yongwoo.jeon@navercorp.com> | 2015-07-02 15:33:38 +0900 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-09-08 02:30:26 +0200 |
commit | 98cee73244d55910a1ac82bcf6cae04a7f650484 (patch) | |
tree | c9f9d2262dea6d6e93e5618fe4049923ef5a772b /src/core.js | |
parent | ab30934c1d7e023d9e80525c6e7ad4da31b543af (diff) | |
download | jquery-98cee73244d55910a1ac82bcf6cae04a7f650484.tar.gz jquery-98cee73244d55910a1ac82bcf6cae04a7f650484.zip |
Core: Remove unnecessary parameter to jQuery#constructor
Closes gh-2441
Diffstat (limited to 'src/core.js')
-rw-r--r-- | src/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.js b/src/core.js index 3fec8f1cb..3b42d73ab 100644 --- a/src/core.js +++ b/src/core.js @@ -105,7 +105,7 @@ jQuery.fn = jQuery.prototype = { }, end: function() { - return this.prevObject || this.constructor( null ); + return this.prevObject || this.constructor(); }, // For internal use only. |