Skip to content

Commit

Permalink
fixes jenkinsci#2: Flog graph doesn't track over time
Browse files Browse the repository at this point in the history
  • Loading branch information
calavera committed Nov 18, 2010
1 parent bb920ee commit c3d0743
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -32,8 +32,8 @@ protected DataSetBuilder<String, NumberOnlyBuildLabel> getDataSetBuilder() {
for (FlogBuildAction action = this; action != null; action = action.getPreviousResult()) {
ChartUtil.NumberOnlyBuildLabel label = new ChartUtil.NumberOnlyBuildLabel(action.owner);

dsb.add(results.getTotal(), "Total score", label);
dsb.add(results.getAverage(), "Average score", label);
dsb.add(action.getResults().getTotal(), "Total score", label);
dsb.add(action.getResults().getAverage(), "Average score", label);
}

return dsb;
Expand Down

0 comments on commit c3d0743

Please sign in to comment.