Changeset 4087


Ignore:
Timestamp:
Dec 21, 2010, 1:57:24 PM (12 years ago)
Author:
olle
Message:

Refs #668. Class/file plugins/RunMsInspectPlugin.java in plugin/ updated by removing detailed debug output from private method int EstimatedTotalPercentage(int percentage, boolean isAnalysisPhase):

  1. Private method int EstimatedTotalPercentage(int percentage, boolean isAnalysisPhase) updated by commenting out line for detailed debug output.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugin/src/org/proteios/plugins/RunMsInspectPlugin.java

    r4086 r4087  
    915915    double totalPercentage = 100.0*totalFraction;
    916916    int totalIntegerPercentage = (int) totalPercentage;
    917     System.out.println(this.getClass().getSimpleName() + ": percentage = " + percentage + " isAnalysisPhase = " + isAnalysisPhase + " fileSizeInBytes = " + fileSizeInBytes + " analysisIndexingRatio = " + analysisIndexingRatio + " totalPercentage = " + totalPercentage + " totalIntegerPercentage = " + totalIntegerPercentage);
     917    // System.out.println(this.getClass().getSimpleName() + ": percentage = " + percentage + " isAnalysisPhase = " + isAnalysisPhase + " fileSizeInBytes = " + fileSizeInBytes + " analysisIndexingRatio = " + analysisIndexingRatio + " totalPercentage = " + totalPercentage + " totalIntegerPercentage = " + totalIntegerPercentage);
    918918    return totalIntegerPercentage;
    919919  }
Note: See TracChangeset for help on using the changeset viewer.