Improve readability

This commit is contained in:
syuilo 2018-10-21 14:44:37 +09:00
parent 1bf8cbeb29
commit e1ba19fd7e
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -108,7 +108,8 @@ abstract class Chart<T> {
if (currentStats) {
return currentStats;
} else {
}
// 集計期間が変わってから、初めてのチャート更新なら
// 最も最近の統計を持ってくる
// * 例えば集計期間が「日」である場合で考えると、
@ -153,7 +154,6 @@ abstract class Chart<T> {
return stats;
}
}
}
@autobind
protected commit(query: Obj, group?: Obj, uniqueKey?: string, uniqueValue?: string): void {