remove an unused variable and its assignment in the 'map' method

This commit is contained in:
Ed Engelhardt 2007-05-22 10:37:54 +00:00
parent f7ea17060f
commit 79b3ff0772

View File

@ -1770,7 +1770,7 @@ jQuery.extend({
if ( typeof fn == "string" ) if ( typeof fn == "string" )
fn = new Function("a","return " + fn); fn = new Function("a","return " + fn);
var result = [], r = []; var result = [];
// Go through the array, translating each of the items to their // Go through the array, translating each of the items to their
// new value (or values). // new value (or values).