Author: davsclaus
Date: Sun May 20 19:29:20 2012
New Revision: 1340810

URL: http://svn.apache.org/viewvc?rev=1340810&view=rev
Log:
XPath in XML DSL dont care about whitespace noise

Modified:
    
camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/xpathFilter.xml

Modified: 
camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/xpathFilter.xml
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/xpathFilter.xml?rev=1340810&r1=1340809&r2=1340810&view=diff
==============================================================================
--- 
camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/xpathFilter.xml
 (original)
+++ 
camel/trunk/components/camel-spring/src/test/resources/org/apache/camel/spring/example/xpathFilter.xml
 Sun May 20 19:29:20 2012
@@ -27,7 +27,9 @@
     <route>
       <from uri="direct:start"/>
       <filter>
-        <xpath>/person[@name='James']</xpath>
+        <xpath>
+          /person[@name='James']
+        </xpath>
         <to uri="mock:result"/>
       </filter>
     </route>


Reply via email to