From: Yongwoo Jeon Date: Thu, 2 Jul 2015 06:33:38 +0000 (+0900) Subject: Core: Remove unnecessary parameter to jQuery#constructor X-Git-Tag: 2.2.0~153 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=98cee73244d55910a1ac82bcf6cae04a7f650484;p=jquery.git Core: Remove unnecessary parameter to jQuery#constructor Closes gh-2441 --- 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.