diff --git a/osu.Game/Beatmaps/Formats/IHasComboColours.cs b/osu.Game/Beatmaps/Formats/IHasComboColours.cs
index ac0d32dbaa..41c85db063 100644
--- a/osu.Game/Beatmaps/Formats/IHasComboColours.cs
+++ b/osu.Game/Beatmaps/Formats/IHasComboColours.cs
@@ -11,7 +11,7 @@ namespace osu.Game.Beatmaps.Formats
///
/// Retrieves the list of combo colours for presentation only.
///
- IReadOnlyList ComboColours { get; set; }
+ IReadOnlyList ComboColours { get; }
///
/// Adds combo colours to the list.
diff --git a/osu.Game/Skinning/SkinConfiguration.cs b/osu.Game/Skinning/SkinConfiguration.cs
index e3a0ab23fa..a55870aa6d 100644
--- a/osu.Game/Skinning/SkinConfiguration.cs
+++ b/osu.Game/Skinning/SkinConfiguration.cs
@@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
-using System.Linq;
using osu.Game.Beatmaps.Formats;
using osuTK.Graphics;
@@ -28,7 +27,7 @@ namespace osu.Game.Skinning
new Color4(242, 24, 57, 255),
};
- private List comboColours = new List();
+ private readonly List comboColours = new List();
public IReadOnlyList ComboColours
{
@@ -42,7 +41,6 @@ namespace osu.Game.Skinning
return null;
}
- set => comboColours = value.ToList();
}
public void AddComboColours(params Color4[] colours) => comboColours.AddRange(colours);