Set license header year to 2018, remove old TODO comment

This commit is contained in:
HoLLy 2019-01-09 00:51:49 +01:00
parent 41d0bff243
commit 75a5691c5f
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// Copyright (c) 2007-2019 ppy Pty Ltd <contact@ppy.sh>.
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
@ -89,7 +89,7 @@ public override double Calculate(Dictionary<string, double> categoryDifficulty =
}
private float accuracy() => totalHits() == 0 ? 0 : MathHelper.Clamp((float)totalSuccessfulHits() / totalHits(), 0f, 1f);
private int totalHits() => countMeh + countGood + countGreat + countMiss; // TODO: not counting katu
private int totalHits() => countMeh + countGood + countGreat + countMiss;
private int totalSuccessfulHits() => countMeh + countGood + countGreat;
private int totalComboHits() => countMeh + countGood + countGreat;
}