Author: rahul Date: Sat Jan 15 04:08:06 2011 New Revision: 1059252 URL: http://svn.apache.org/viewvc?rev=1059252&view=rev Log: Remove debug trace.
Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/xpath/XPathEvaluator.java Modified: commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/xpath/XPathEvaluator.java URL: http://svn.apache.org/viewvc/commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/xpath/XPathEvaluator.java?rev=1059252&r1=1059251&r2=1059252&view=diff ============================================================================== --- commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/xpath/XPathEvaluator.java (original) +++ commons/proper/scxml/branches/J6/src/main/java/org/apache/commons/scxml/env/xpath/XPathEvaluator.java Sat Jan 15 04:08:06 2011 @@ -89,7 +89,6 @@ public class XPathEvaluator implements E try { return xpath.evaluate(expr, dummyContextNode, XPathConstants.STRING); } catch (XPathExpressionException xee) { - xee.printStackTrace(); throw new SCXMLExpressionException(xee.getMessage(), xee); } }