Fixed statistic type.

This commit is contained in:
Christian P. MOMON 2018-06-13 10:24:51 +02:00
parent fb2dd10a46
commit c87cbe2059
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ public class ReviewStatsReporter
IntegerBoard board = new IntegerBoard();
for (ReviewData data : datas)
{
board.add(data.getDuration());
board.add(data.getUserCount());
}
result = "Tableau du nombre de personnes participantes : " + board.toString();