CI fixes.

This commit is contained in:
smoogipooo 2017-04-18 11:20:39 +09:00
parent d04353aed0
commit 8844ff7ab7
2 changed files with 1 additions and 2 deletions

View File

@ -14,7 +14,6 @@ using osu.Game.Modes.Osu.Objects;
using osu.Game.Screens.Play; using osu.Game.Screens.Play;
using OpenTK.Graphics; using OpenTK.Graphics;
using osu.Desktop.VisualTests.Beatmaps; using osu.Desktop.VisualTests.Beatmaps;
using osu.Game.Modes.Osu;
namespace osu.Desktop.VisualTests.Tests namespace osu.Desktop.VisualTests.Tests
{ {

View File

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