aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
diff options
context:
space:
mode:
authorYongwoo Jeon <yongwoo.jeon@navercorp.com>2015-07-02 15:33:38 +0900
committerMichał Gołębiowski <m.goleb@gmail.com>2015-09-08 02:30:26 +0200
commit98cee73244d55910a1ac82bcf6cae04a7f650484 (patch)
treec9f9d2262dea6d6e93e5618fe4049923ef5a772b /src/core.js
parentab30934c1d7e023d9e80525c6e7ad4da31b543af (diff)
downloadjquery-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.js2
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.