Author: simonetripodi
Date: Thu Jun 2 19:40:24 2011
New Revision: 1130766
URL: http://svn.apache.org/viewvc?rev=1130766&view=rev
Log:
minor code format
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml?rev=1130766&r1=1130765&r2=1130766&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
(original)
+++ commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/compound.xml
Thu Jun 2 19:40:24 2011
@@ -17,16 +17,14 @@
<!--
- Example compound pipeline
-->
-
<pipeline>
- <source file="input.txt"/>
+ <source file="input.txt" />
<transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CompoundTransform">
- <subtransform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="lower"/>
+ <subtransform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="lower" />
<subtransform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.SubstituteTransform">
<from>changeme</from>
<to>transformed</to>
</subtransform>
</transform>
- <destination file="output.txt"/>
+ <destination file="output.txt" />
</pipeline>
-
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml?rev=1130766&r1=1130765&r2=1130766&view=diff
==============================================================================
---
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
(original)
+++
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/substitute.xml
Thu Jun 2 19:40:24 2011
@@ -18,13 +18,11 @@
<!--
- Example pipeline which uses the SubstituteTransform plugin class
-->
-
<pipeline>
- <source file="input.txt"/>
+ <source file="input.txt" />
<transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.SubstituteTransform">
<from>changeme</from>
<to>changed</to>
</transform>
- <destination file="output.txt"/>
+ <destination file="output.txt" />
</pipeline>
-
Modified:
commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml?rev=1130766&r1=1130765&r2=1130766&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
(original)
+++ commons/sandbox/digester3/trunk/src/examples/plugins/pipeline/uppercase.xml
Thu Jun 2 19:40:24 2011
@@ -17,10 +17,8 @@
<!--
- Example pipeline which uses the CaseTransform plugin class
-->
-
<pipeline>
- <source file="input.txt"/>
- <transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="upper"/>
- <destination file="output.txt"/>
+ <source file="input.txt" />
+ <transform
plugin-class="org.apache.commons.digester3.examples.plugins.pipeline.CaseTransform"
case="upper" />
+ <destination file="output.txt" />
</pipeline>
-