]> source.dussan.org Git - jquery.git/commitdiff
Core: Remove unnecessary parameter to jQuery#constructor
authorYongwoo Jeon <yongwoo.jeon@navercorp.com>
Thu, 2 Jul 2015 06:33:38 +0000 (15:33 +0900)
committerMichał Gołębiowski <m.goleb@gmail.com>
Tue, 8 Sep 2015 00:30:26 +0000 (02:30 +0200)
Closes gh-2441

src/core.js

index 3fec8f1cb9114493be4397a71bc4587ac5c49ebe..3b42d73ab64fe7bade0ff99655bf8dcf1e0a4faf 100644 (file)
@@ -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.