diff --git a/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs b/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs
index 8c3ac526f6..8e19419dbb 100644
--- a/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs
+++ b/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs
@@ -14,7 +14,6 @@ using osu.Game.Modes.Osu.Objects;
using osu.Game.Screens.Play;
using OpenTK.Graphics;
using osu.Desktop.VisualTests.Beatmaps;
-using osu.Game.Modes.Osu;
namespace osu.Desktop.VisualTests.Tests
{
diff --git a/osu.Game/Modes/Beatmaps/BeatmapConverter.cs b/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
index d08eff6583..ca7cb5a5bc 100644
--- a/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
+++ b/osu.Game/Modes/Beatmaps/BeatmapConverter.cs
@@ -32,6 +32,6 @@ namespace osu.Game.Modes.Beatmaps
///
/// The Beatmap to check.
/// Whether the Beatmap can be converted using this Beatmap Converter.
- 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));
}
}