You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2006/05/03 13:12:27 UTC

svn commit: r399256 - /incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java

Author: jstrachan
Date: Wed May  3 04:12:12 2006
New Revision: 399256

URL: http://svn.apache.org/viewcvs?rev=399256&view=rev
Log:
removed some system.out logging

Modified:
    incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java

Modified: incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java?rev=399256&r1=399255&r2=399256&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java (original)
+++ incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/filter/ArithmeticExpression.java Wed May  3 04:12:12 2006
@@ -43,7 +43,6 @@
                 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) {