Skip to content

Commit e9ce0d2

Browse files
Merge pull request prototypejs#53 from victor-homyakov/patch-13
Remove redundant variable declaration.
2 parents e93010f + a3cac7c commit e9ce0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prototype/lang/function.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Object.extend(Function.prototype, (function() {
123123
var __method = this, args = slice.call(arguments, 1);
124124

125125
var bound = function() {
126-
var a = merge(args, arguments), c = context;
126+
var a = merge(args, arguments);
127127
// Ignore the supplied context when the bound function is called with
128128
// the "new" keyword.
129129
var c = this instanceof bound ? this : context;

0 commit comments

Comments
 (0)