diff --git a/underscore.js b/underscore.js index 1413d1421..bd237ce3c 100644 --- a/underscore.js +++ b/underscore.js @@ -69,9 +69,6 @@ case 1: return function(value) { return func.call(context, value); }; - case 2: return function(value, other) { - return func.call(context, value, other); - }; case 3: return function(value, index, collection) { return func.call(context, value, index, collection); };