You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2004/11/17 20:11:35 UTC

svn commit: rev 76162 - cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap

Author: vgritsenko
Date: Wed Nov 17 11:11:34 2004
New Revision: 76162

Modified:
   cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/MountNode.java
Log:
whitespace


Modified: cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/MountNode.java
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/MountNode.java	(original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/treeprocessor/sitemap/MountNode.java	Wed Nov 17 11:11:34 2004
@@ -128,8 +128,7 @@
 
     private synchronized TreeProcessor getProcessor(String source, String prefix) throws Exception {
 
-        TreeProcessor processor = (TreeProcessor)processors.get(source);
-
+        TreeProcessor processor = (TreeProcessor) processors.get(source);
         if (processor == null) {
             // Handle directory mounts
             String actualSource;
@@ -152,9 +151,9 @@
      * @see org.apache.avalon.framework.activity.Disposable#dispose()
      */
     public void dispose() {
-        Iterator iter = this.processors.values().iterator();
-        while(iter.hasNext()) {
-            ((TreeProcessor)iter.next()).dispose();
+        Iterator i = this.processors.values().iterator();
+        while (i.hasNext()) {
+            ((TreeProcessor) i.next()).dispose();
         }
         this.processors.clear();
     }