public int compare(Object o, Object o1) {
   RunEntryStatistics re = (RunEntryStatistics) o;
   RunEntryStatistics re1 = (RunEntryStatistics) o1;
   int runtime = re.getSuccessfulBuilds() - re1.getSuccessfulBuilds();
   if (runtime == 0) {
     return re.getRunTime() - re1.getRunTime();
   }
   return runtime;
 }