
| Key: |
CCNET-756
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Grant Drake
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
|
File Attachments:
|
1.
StatisticsBuilder.patch (0.7 kb)
|
|
|
Two bugs in the ThoughtWorks.CruiseControl.Core.Publishers.Statistics.StatisticsBuilder class...
First bug is it writes an extra column out for the headings that is not in the detail.
Second bug is the detail lines always have the statistics names and not the values.
Line 93
For writing CSV file headings... instead of:
writer.Write(", ");
should be:
if (i > 0) writer.Write(", ");
Line 105
For writing CSV files... instead of:
writer.Write(statistic.StatName);
should be:
writer.Write(statistic.Value);
|
|
Description
|
Two bugs in the ThoughtWorks.CruiseControl.Core.Publishers.Statistics.StatisticsBuilder class...
First bug is it writes an extra column out for the headings that is not in the detail.
Second bug is the detail lines always have the statistics names and not the values.
Line 93
For writing CSV file headings... instead of:
writer.Write(", ");
should be:
if (i > 0) writer.Write(", ");
Line 105
For writing CSV files... instead of:
writer.Write(statistic.StatName);
should be:
writer.Write(statistic.Value); |
Show » |
|