diff --git a/csharp/src/Google.Protobuf/Collections/MapField.cs b/csharp/src/Google.Protobuf/Collections/MapField.cs index 0f7227c212..9f460e1e13 100644 --- a/csharp/src/Google.Protobuf/Collections/MapField.cs +++ b/csharp/src/Google.Protobuf/Collections/MapField.cs @@ -54,7 +54,6 @@ namespace Google.Protobuf.Collections { // TODO: Don't create the map/list until we have an entry. (Assume many maps will be empty.) private readonly bool allowNullValues; - private bool frozen; private readonly Dictionary>> map = new Dictionary>>(); private readonly LinkedList> list = new LinkedList>(); @@ -254,7 +253,7 @@ namespace Google.Protobuf.Collections public bool AllowsNullValues { get { return allowNullValues; } } public int Count { get { return list.Count; } } - public bool IsReadOnly { get { return frozen; } } + public bool IsReadOnly { get { return false; } } public override bool Equals(object other) { @@ -416,10 +415,6 @@ namespace Google.Protobuf.Collections set { - if (frozen) - { - throw new NotSupportedException("Dictionary is frozen"); - } this[(TKey)key] = (TValue)value; } } diff --git a/csharp/src/Google.Protobuf/Collections/RepeatedField.cs b/csharp/src/Google.Protobuf/Collections/RepeatedField.cs index e7fc0a3f81..60ab5ed8d0 100644 --- a/csharp/src/Google.Protobuf/Collections/RepeatedField.cs +++ b/csharp/src/Google.Protobuf/Collections/RepeatedField.cs @@ -48,7 +48,6 @@ namespace Google.Protobuf.Collections private static readonly T[] EmptyArray = new T[0]; private const int MinArraySize = 8; - private bool frozen; private T[] array = EmptyArray; private int count = 0;