working on issue of collapsed nodes in circular display
[jalview.git] / forester / java / src / org / forester / application / simple_node_processor.java
index ac60660..033bd9f 100644 (file)
@@ -83,8 +83,8 @@ public class simple_node_processor {
     //    }
     private static void processNode( final PhylogenyNode node, final int i ) {
         if ( node.isExternal() ) {
-            String c = "" + node.getNodeData().getBinaryCharacters().getPresentCount();
-            String s = node.getNodeData().getTaxonomy().getScientificName();
+            final String c = "" + node.getNodeData().getBinaryCharacters().getPresentCount();
+            final String s = node.getNodeData().getTaxonomy().getScientificName();
             System.out.println( s + "\t" + c );
         }
     }