Commit 6f09cc3a authored by Sydney Acksman's avatar Sydney Acksman

Fix readability.

parent 3457f889
......@@ -110,7 +110,8 @@ namespace Google.Protobuf.Reflection
IList<FieldDescriptor> list;
if (!declarationOrder.TryGetValue(descriptor.ExtendeeType, out list))
{
declarationOrder.Add(descriptor.ExtendeeType, list = new List<FieldDescriptor>());
list = new List<FieldDescriptor>();
declarationOrder.Add(descriptor.ExtendeeType, list);
}
list.Add(descriptor);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment