From 55c91320375660bf12efa4dfbce19d4acb982e66 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 3 Jul 2014 17:47:12 +0000 Subject: [PATCH] remove NamedDictionary that was only being used by a deleted mnemonics system --- BizHawk.Common/CustomCollections.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/BizHawk.Common/CustomCollections.cs b/BizHawk.Common/CustomCollections.cs index c24fd34e85..537b685720 100644 --- a/BizHawk.Common/CustomCollections.cs +++ b/BizHawk.Common/CustomCollections.cs @@ -38,22 +38,6 @@ namespace BizHawk.Common protected WorkingDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { } } - /// - /// A dictionary that contains a name parameter, which is required - /// - [Serializable] - public class NamedDictionary : Dictionary - { - public NamedDictionary(string name) - { - Name = name; - } - - public string Name { get; private set; } - - protected NamedDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { } - } - /// /// a Dictionary-of-lists with key K and values List<V> ///