diff options
author | Ed Engelhardt <edengelhardt@gmail.com> | 2007-05-22 10:37:54 +0000 |
---|---|---|
committer | Ed Engelhardt <edengelhardt@gmail.com> | 2007-05-22 10:37:54 +0000 |
commit | 79b3ff077252e25a16188ac723376798314a8a6b (patch) | |
tree | ae9a019d3e41b32798ccbf8c3760d5b18e5eb1da /src/jquery | |
parent | f7ea17060fcaf6cd14a03343ec97f77367f5022a (diff) | |
download | jquery-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.js | 2 |
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). |