From: Yongwoo Jeon Date: Thu, 2 Jul 2015 06:33:38 +0000 (+0900) Subject: Core: Remove unnecessary parameter to jQuery#constructor X-Git-Tag: 1.12.0~134 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dc76dca295e6413edbac5c9aa0ffadd69a085577;p=jquery.git Core: Remove unnecessary parameter to jQuery#constructor (cherry-picked from 98cee73244d55910a1ac82bcf6cae04a7f650484) Closes gh-2441 --- diff --git a/src/core.js b/src/core.js index 6bc8dc5ab..0bab1a80c 100644 --- a/src/core.js +++ b/src/core.js @@ -106,7 +106,7 @@ jQuery.fn = jQuery.prototype = { }, end: function() { - return this.prevObject || this.constructor( null ); + return this.prevObject || this.constructor(); }, // For internal use only.