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>
///