From 4f54f62abca13b5758777e3859bd34297b3c18e2 Mon Sep 17 00:00:00 2001 From: kpdecker Date: Sun, 13 Jan 2013 22:31:42 -0600 Subject: [PATCH] Remove duplicate assignment --- lib/handlebars/compiler/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlebars/compiler/compiler.js b/lib/handlebars/compiler/compiler.js index 64ae959f..04ad918a 100644 --- a/lib/handlebars/compiler/compiler.js +++ b/lib/handlebars/compiler/compiler.js @@ -530,7 +530,7 @@ Handlebars.JavaScriptCompiler = function() {}; this.replaceStack(function(current) { params.splice(1, 0, current); - return current + " = blockHelperMissing.call(" + params.join(", ") + ")"; + return "blockHelperMissing.call(" + params.join(", ") + ")"; }); },