From feb983d5bdb876ef9f0ac61a7985ab38f2b1b4ce Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 23 Nov 2021 13:09:41 +0900 Subject: [PATCH] Rename `Debug` namespace to avoid collisions --- osu.Game/Overlays/Settings/Sections/DebugSection.cs | 2 +- .../Sections/{Debug => DebugSettings}/GeneralSettings.cs | 2 +- .../Sections/{Debug => DebugSettings}/MemorySettings.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename osu.Game/Overlays/Settings/Sections/{Debug => DebugSettings}/GeneralSettings.cs (96%) rename osu.Game/Overlays/Settings/Sections/{Debug => DebugSettings}/MemorySettings.cs (93%) diff --git a/osu.Game/Overlays/Settings/Sections/DebugSection.cs b/osu.Game/Overlays/Settings/Sections/DebugSection.cs index aa85ec920c..2e23d8a22a 100644 --- a/osu.Game/Overlays/Settings/Sections/DebugSection.cs +++ b/osu.Game/Overlays/Settings/Sections/DebugSection.cs @@ -5,7 +5,7 @@ using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Framework.Localisation; using osu.Game.Localisation; -using osu.Game.Overlays.Settings.Sections.Debug; +using osu.Game.Overlays.Settings.Sections.DebugSettings; namespace osu.Game.Overlays.Settings.Sections { diff --git a/osu.Game/Overlays/Settings/Sections/Debug/GeneralSettings.cs b/osu.Game/Overlays/Settings/Sections/DebugSettings/GeneralSettings.cs similarity index 96% rename from osu.Game/Overlays/Settings/Sections/Debug/GeneralSettings.cs rename to osu.Game/Overlays/Settings/Sections/DebugSettings/GeneralSettings.cs index 25e20911b8..60540a089e 100644 --- a/osu.Game/Overlays/Settings/Sections/Debug/GeneralSettings.cs +++ b/osu.Game/Overlays/Settings/Sections/DebugSettings/GeneralSettings.cs @@ -9,7 +9,7 @@ using osu.Framework.Screens; using osu.Game.Localisation; using osu.Game.Screens.Import; -namespace osu.Game.Overlays.Settings.Sections.Debug +namespace osu.Game.Overlays.Settings.Sections.DebugSettings { public class GeneralSettings : SettingsSubsection { diff --git a/osu.Game/Overlays/Settings/Sections/Debug/MemorySettings.cs b/osu.Game/Overlays/Settings/Sections/DebugSettings/MemorySettings.cs similarity index 93% rename from osu.Game/Overlays/Settings/Sections/Debug/MemorySettings.cs rename to osu.Game/Overlays/Settings/Sections/DebugSettings/MemorySettings.cs index 07fb0aca5a..6f48768dcd 100644 --- a/osu.Game/Overlays/Settings/Sections/Debug/MemorySettings.cs +++ b/osu.Game/Overlays/Settings/Sections/DebugSettings/MemorySettings.cs @@ -8,7 +8,7 @@ using osu.Framework.Localisation; using osu.Framework.Platform; using osu.Game.Localisation; -namespace osu.Game.Overlays.Settings.Sections.Debug +namespace osu.Game.Overlays.Settings.Sections.DebugSettings { public class MemorySettings : SettingsSubsection {