fixing TODOs

This commit is contained in:
Andy Clement 2008-08-16 01:56:43 +00:00
parent 3ebf290534
commit 3d54bd5aa3
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ public class OperatorMultiply extends Operator {
*/
@Override
public Object getValue(ExpressionState state) throws EvaluationException {
// TODO could have an 'int only' arithmetic mode for super fast expression evaluation
Object operandOne = getLeftOperand().getValue(state);
Object operandTwo = getRightOperand().getValue(state);
if (operandOne instanceof Number && operandTwo instanceof Number) {