diff --git a/OpenRA.Game/MiniYaml.cs b/OpenRA.Game/MiniYaml.cs index ed7034ed53..fca98a28a4 100644 --- a/OpenRA.Game/MiniYaml.cs +++ b/OpenRA.Game/MiniYaml.cs @@ -128,16 +128,6 @@ namespace OpenRA Nodes = nodes ?? new List(); } - public static MiniYaml FromDictionary(Dictionary dict) - { - return new MiniYaml(null, dict.Select(x => new MiniYamlNode(x.Key.ToString(), new MiniYaml(x.Value.ToString()))).ToList()); - } - - public static MiniYaml FromList(List list) - { - return new MiniYaml(null, list.Select(x => new MiniYamlNode(x.ToString(), new MiniYaml(null))).ToList()); - } - public static List NodesOrEmpty(MiniYaml y, string s) { var nd = y.ToDictionary();