1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-09 20:54:47 +08:00

Remove unnecessary setters

This commit is contained in:
Drew DeVault
2016-10-10 14:35:44 -04:00
committed by Dean Herbert
Unverified
parent 880399f5a5
commit c7d12bc072
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ namespace osu.Game.Beatmaps.Formats
{
public abstract class BeatmapDecoder
{
private static Dictionary<string, Type> decoders { get; set; } = new Dictionary<string, Type>();
private static Dictionary<string, Type> decoders { get; } = new Dictionary<string, Type>();
public static BeatmapDecoder GetDecoder(TextReader stream)
{
+1 -1
View File
@@ -13,7 +13,7 @@ namespace osu.Game.Beatmaps.IO
public Type Type { get; set; }
}
private static List<Reader> readers { get; set; } = new List<Reader>();
private static List<Reader> readers { get; } = new List<Reader>();
public static ArchiveReader GetReader(BasicStorage storage, string path)
{