Improve readability
This commit is contained in:
parent
1bf8cbeb29
commit
e1ba19fd7e
1 changed files with 38 additions and 38 deletions
|
@ -108,7 +108,8 @@ abstract class Chart<T> {
|
||||||
|
|
||||||
if (currentStats) {
|
if (currentStats) {
|
||||||
return currentStats;
|
return currentStats;
|
||||||
} else {
|
}
|
||||||
|
|
||||||
// 集計期間が変わってから、初めてのチャート更新なら
|
// 集計期間が変わってから、初めてのチャート更新なら
|
||||||
// 最も最近の統計を持ってくる
|
// 最も最近の統計を持ってくる
|
||||||
// * 例えば集計期間が「日」である場合で考えると、
|
// * 例えば集計期間が「日」である場合で考えると、
|
||||||
|
@ -153,7 +154,6 @@ abstract class Chart<T> {
|
||||||
return stats;
|
return stats;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@autobind
|
@autobind
|
||||||
protected commit(query: Obj, group?: Obj, uniqueKey?: string, uniqueValue?: string): void {
|
protected commit(query: Obj, group?: Obj, uniqueKey?: string, uniqueValue?: string): void {
|
||||||
|
|
Loading…
Reference in a new issue