From 8c991eae01af96a974e4f7766f56910994670900 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Tue, 14 Mar 2017 22:27:24 +0800 Subject: [PATCH] Fix CI issues. --- osu.Game/Screens/Edit/Editor.cs | 2 +- osu.Game/Screens/Select/Footer.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Screens/Edit/Editor.cs b/osu.Game/Screens/Edit/Editor.cs index 3baa79aa1a..850c640770 100644 --- a/osu.Game/Screens/Edit/Editor.cs +++ b/osu.Game/Screens/Edit/Editor.cs @@ -12,7 +12,7 @@ namespace osu.Game.Screens.Edit { internal class Editor : ScreenWhiteBox { - protected override IEnumerable PossibleChildren => new Type[] { typeof(EditSongSelect) }; + protected override IEnumerable PossibleChildren => new[] { typeof(EditSongSelect) }; protected override BackgroundScreen CreateBackground() => new BackgroundScreenCustom(@"Backgrounds/bg4"); diff --git a/osu.Game/Screens/Select/Footer.cs b/osu.Game/Screens/Select/Footer.cs index c913085a05..fae1cb5d4d 100644 --- a/osu.Game/Screens/Select/Footer.cs +++ b/osu.Game/Screens/Select/Footer.cs @@ -10,7 +10,6 @@ using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.Transforms; -using osu.Framework.Input; using osu.Game.Graphics.UserInterface; using osu.Game.Screens.Menu;