CI fixes.

This commit is contained in:
smoogipooo 2017-04-18 09:51:02 +09:00
parent 0e1ce333e3
commit 0cef14ca63
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ using osu.Game.Modes.Objects.Types;
using OpenTK.Graphics;
using osu.Game.Beatmaps.Timing;
using osu.Game.Database;
using System;
namespace osu.Game.Modes.Osu.Objects
{

View File

@ -32,6 +32,6 @@ namespace osu.Game.Modes.Beatmaps
/// </summary>
/// <param name="beatmap">The Beatmap to check.</param>
/// <returns>Whether the Beatmap can be converted using this Beatmap Converter.</returns>
public bool CanConvert(Beatmap beatmap) => ValidConversionTypes.All(t => beatmap.HitObjects.Any(h => t.IsAssignableFrom(h.GetType())));
public bool CanConvert(Beatmap beatmap) => ValidConversionTypes.All(t => beatmap.HitObjects.Any(h => h.GetType().IsInstanceOfType(t)));
}
}