- changed indention marker #3736
authorPatric Plitzner <p.plitzner@bgbm.org>
Mon, 4 Nov 2013 14:39:34 +0000 (14:39 +0000)
committerPatric Plitzner <p.plitzner@bgbm.org>
Mon, 4 Nov 2013 14:39:34 +0000 (14:39 +0000)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/model/AbstractUtility.java

index 7dcf587ef3c66e94f1da8b1620338c3672b0799d..3c0b4e9dda1187bb63e2851205b8f7f1eab507c2 100644 (file)
@@ -970,6 +970,9 @@ public abstract class AbstractUtility {
         for(TermNode<T> node:children){
             String indentString = "";
             for(int i=0;i<depth;i++){
+                indentString += "  ";
+            }
+            if(depth>0){
                 indentString += "- ";
             }
             result.put(node.term, indentString + node.term.getMessage());