Changeset 985


Ignore:
Timestamp:
08/29/10 12:42:53 (17 months ago)
Author:
kasper
Message:

Minor fix to value distribution result print

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AnalyzerBeans/trunk/src/main/java/org/eobjects/analyzer/beans/valuedist/ValueDistributionResult.java

    r983 r985  
    7777                sb.append("Value distribution for column: "); 
    7878                sb.append(_columnName); 
    79                 sb.append('\n'); 
    8079 
    8180                if (_topValues != null && _topValues.getActualSize() > 0) { 
    82                         sb.append("Top values:"); 
     81                        sb.append("\nTop values:"); 
    8382                        List<ValueCount> valueCounts = _topValues.getValueCounts(); 
    8483                        for (ValueCount valueCount : valueCounts) { 
     
    9190 
    9291                if (_bottomValues != null && _bottomValues.getActualSize() > 0) { 
    93                         sb.append("Bottom values:"); 
     92                        sb.append("\nBottom values:"); 
    9493                        List<ValueCount> valueCounts = _bottomValues.getValueCounts(); 
    9594                        for (ValueCount valueCount : valueCounts) { 
Note: See TracChangeset for help on using the changeset viewer.