Remove duplicate assignment

This commit is contained in:
kpdecker
2013-01-13 22:31:42 -06:00
parent eaa7e97461
commit 4f54f62abc
+1 -1
View File
@@ -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(", ") + ")";
});
},