From 0ddc4360fe9e0347041dd1609059786fae284fd2 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Tue, 2 May 2017 22:08:04 +0100 Subject: [PATCH] Remove unused MiniYaml DictFromFile. --- OpenRA.Game/MiniYaml.cs | 5 ----- 1 file changed, 5 deletions(-) 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);