aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery
diff options
context:
space:
mode:
authorEd Engelhardt <edengelhardt@gmail.com>2007-05-22 10:37:54 +0000
committerEd Engelhardt <edengelhardt@gmail.com>2007-05-22 10:37:54 +0000
commit79b3ff077252e25a16188ac723376798314a8a6b (patch)
treeae9a019d3e41b32798ccbf8c3760d5b18e5eb1da /src/jquery
parentf7ea17060fcaf6cd14a03343ec97f77367f5022a (diff)
downloadjquery-79b3ff077252e25a16188ac723376798314a8a6b.tar.gz
jquery-79b3ff077252e25a16188ac723376798314a8a6b.zip
remove an unused variable and its assignment in the 'map' method
Diffstat (limited to 'src/jquery')
-rw-r--r--src/jquery/jquery.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 5c9dcf3bd..1be9c91c6 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -1770,7 +1770,7 @@ jQuery.extend({
if ( typeof fn == "string" )
fn = new Function("a","return " + fn);
- var result = [], r = [];
+ var result = [];
// Go through the array, translating each of the items to their
// new value (or values).