From 3457f8894074a3eb114250a3f2ce398628fc2cbd Mon Sep 17 00:00:00 2001 From: Sydney Acksman Date: Wed, 20 Nov 2019 10:55:48 -0600 Subject: [PATCH] Fix formatting --- csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs b/csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs index 9196b50ddd..a4f144aa8d 100644 --- a/csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs +++ b/csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs @@ -109,7 +109,9 @@ namespace Google.Protobuf.Reflection IList list; if (!declarationOrder.TryGetValue(descriptor.ExtendeeType, out list)) + { declarationOrder.Add(descriptor.ExtendeeType, list = new List()); + } list.Add(descriptor); }