Author: michiel
Date: 2010-05-27 14:25:29 +0200 (Thu, 27 May 2010)
New Revision: 42298

Modified:
   
didactor/trunk/components/core/src/main/java/nl/didactor/functions/SmartPath.java
Log:
spacing, debugging

Modified: 
didactor/trunk/components/core/src/main/java/nl/didactor/functions/SmartPath.java
===================================================================
--- 
didactor/trunk/components/core/src/main/java/nl/didactor/functions/SmartPath.java
   2010-05-27 12:25:07 UTC (rev 42297)
+++ 
didactor/trunk/components/core/src/main/java/nl/didactor/functions/SmartPath.java
   2010-05-27 12:25:29 UTC (rev 42298)
@@ -9,7 +9,7 @@
 import org.mmbase.util.logging.*;
 
 /**
- * This builder implements the 'getSmartPath()' method (used by 
+ * This builder implements the 'getSmartPath()' method (used by
  * TreeInclude / Leafinclude) by using values in the fields that
  * are specified in the builder XML file.
  *
@@ -30,12 +30,15 @@
 
         if (spFieldName == null || spFieldName.equals("")) {
             throw new RuntimeException("You must specify the 'smartpathfield' 
property in your <properties> block for this builder " + parent);
-        } 
+        }
         spFieldNames = spFieldName.split("\\s*,\\s*");
 
         String p = parent.getInitParameter("pathprefix");
         if (p == null) p = "";
         spPathPrefix = p;
+        if (log.isDebugEnabled()) {
+            log.debug("Instantiated " + this + " for " + parent + " " + 
Arrays.asList(spFieldNames));
+        }
     }
 
     public void setDidactor(String test) {
@@ -44,6 +47,7 @@
 
     /**
      */
+    @Override
     protected String getSmartPath() {
         if (log.isDebugEnabled()) {
             log.debug("starting getSmartPath(" + webRoot + "," + path + "," + 
nodeNumber + "," + version + ")");
@@ -61,7 +65,7 @@
         ResourceLoader child = webRoot.getChildResourceLoader(path);
 
         String n = nodeNumber;
-        if (version != null && ! version.equals("")) n += "\\." + version;     
  
+        if (version != null && ! version.equals("")) n += "\\." + version;
         MMObjectNode node = parent.getNode(n);
 
         String magName = null;

_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to