From 98cee73244d55910a1ac82bcf6cae04a7f650484 Mon Sep 17 00:00:00 2001 From: Yongwoo Jeon Date: Thu, 2 Jul 2015 15:33:38 +0900 Subject: [PATCH] Core: Remove unnecessary parameter to jQuery#constructor Closes gh-2441 --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.