remove NamedDictionary that was only being used by a deleted mnemonics system
This commit is contained in:
parent
216796c29e
commit
55c9132037
|
@ -38,22 +38,6 @@ namespace BizHawk.Common
|
||||||
protected WorkingDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
protected WorkingDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A dictionary that contains a name parameter, which is required
|
|
||||||
/// </summary>
|
|
||||||
[Serializable]
|
|
||||||
public class NamedDictionary<K, V> : Dictionary<K, V>
|
|
||||||
{
|
|
||||||
public NamedDictionary(string name)
|
|
||||||
{
|
|
||||||
Name = name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public string Name { get; private set; }
|
|
||||||
|
|
||||||
protected NamedDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// a Dictionary-of-lists with key K and values List<V>
|
/// a Dictionary-of-lists with key K and values List<V>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue