Browse Source

EAGLESIX-2714: removed extra code

Jake Delaney 11 years ago
parent
commit
5857ca95cd
1 changed files with 0 additions and 2 deletions
  1. 0 2
      lib/pipeline/expressions/SetEqualsExpression.js

+ 0 - 2
lib/pipeline/expressions/SetEqualsExpression.js

@@ -12,8 +12,6 @@ var SetEqualsExpression = module.exports = function SetEqualsExpression() {
 
 	if (arguments.length !== 0) throw new Error("Zero arguments expected. Got " + arguments.length);
 
-	this.nargs = 2;
-
 	base.call(this);
 }, klass = SetEqualsExpression, base = require("./VariadicExpressionT")(SetEqualsExpression), proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});