cleanup
[jalview.git] / forester / java / src / org / forester / util / AsciiHistogram.java
index ea64f40..7c8082f 100644 (file)
@@ -22,7 +22,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.util;
 
@@ -68,7 +68,7 @@ public class AsciiHistogram {
         }
         for( int i = 0; i < bins.length; ++i ) {
             final int count = bins[ i ];
-            final double label = ForesterUtil.round( ( min + i * ( 1.0 / binning_factor ) ), digits );
+            final double label = ForesterUtil.round( ( min + ( i * ( 1.0 / binning_factor ) ) ), digits );
             if ( !ForesterUtil.isEmpty( indent ) ) {
                 sb.append( indent );
             }