mirror of https://github.com/apache/activemq.git
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:
parent
8c933fcc89
commit
0afd5a8cf9
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue