修复月份展示不正确的问题

This commit is contained in:
ascrutae 2016-04-18 19:14:53 +08:00
parent ac8aa1befc
commit a33ab4a2d8
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class CallChainTreeNode {
}
chainNodeSpecificMonthSummaryContainer.put(keyOfMonthSummaryTable, monthSummary);
}
monthSummary.summary(String.valueOf(calendar.get(Calendar.MONTH)), node);
monthSummary.summary(String.valueOf(calendar.get(Calendar.MONTH) + 1), node);
}
private void summaryDayResult(String treeId, ChainNode node, Calendar calendar) throws IOException {