Rename is-in-any check method to a more legible name

This commit is contained in:
Salman Ahmed
2020-04-29 05:08:38 +03:00
parent 8d899f4e77
commit 6e76e5900a
3 changed files with 13 additions and 13 deletions

View File

@ -43,7 +43,7 @@ namespace osu.Game.Utils
/// Whether the provided time is in any of the added periods.
/// </summary>
/// <param name="time">The time value to check for.</param>
public bool Contains(double time)
public bool IsInAny(double time)
{
if (periods.Count == 0)
return false;