X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fmsa%2FMsaCompactor.java;h=73f0c6300e06da30934abd258a78d3820d25dbda;hb=d4d61f9d2969283e821f650d031c169899fb3870;hp=64c69577ba386ce56606f325e5521851ab26800f;hpb=c1802b86ad3e5ec61df8d8b0dd0ee9f6ce705f96;p=jalview.git diff --git a/forester/java/src/org/forester/msa/MsaCompactor.java b/forester/java/src/org/forester/msa/MsaCompactor.java index 64c6957..73f0c63 100644 --- a/forester/java/src/org/forester/msa/MsaCompactor.java +++ b/forester/java/src/org/forester/msa/MsaCompactor.java @@ -188,19 +188,7 @@ public class MsaCompactor { final private DescriptiveStatistics[] calcStats() { final DescriptiveStatistics stats[] = calc(); sort( stats ); - for( int i = 0; i < stats.length; ++i ) { - final DescriptiveStatistics s = stats[ i ]; - // System.out.print( s.getDescription() ); - // System.out.print( "\t" ); - // System.out.print( s.arithmeticMean() ); - // System.out.print( "\t(" ); - // System.out.print( s.arithmeticMean() ); - // System.out.print( ")" ); - // System.out.print( "\t" ); - // System.out.print( s.getMin() ); - // System.out.print( "\t" ); - // System.out.print( s.getMax() ); - // System.out.println(); + for( final DescriptiveStatistics s : stats ) { } return stats; }