removed some system.out logging

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@399256 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-05-03 11:12:12 +00:00
parent 8c933fcc89
commit 0afd5a8cf9
1 changed files with 0 additions and 1 deletions

View File

@ -43,7 +43,6 @@ public abstract class ArithmeticExpression extends BinaryExpression {
if (lvalue instanceof String) {
String text = (String) lvalue;
String answer = text + rvalue;
System.out.println("lvalue: " + lvalue + " rvalue: " + rvalue + " result: " + answer);
return answer;
}
else if (lvalue instanceof Number) {