diff --git a/OpenRA.Game/MiniYaml.cs b/OpenRA.Game/MiniYaml.cs index 6f92c48a4a..7245d52c22 100644 --- a/OpenRA.Game/MiniYaml.cs +++ b/OpenRA.Game/MiniYaml.cs @@ -231,11 +231,6 @@ namespace OpenRA return ret; } - public static Dictionary DictFromFile(string path) - { - return FromFile(path).ToDictionary(x => x.Key, x => x.Value); - } - public static Dictionary DictFromStream(Stream stream, string fileName = "") { return FromStream(stream, fileName).ToDictionary(x => x.Key, x => x.Value);