FlorianHockmann commented on code in PR #2176:
URL: https://github.com/apache/tinkerpop/pull/2176#discussion_r1282719355
##########
gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary/TypeSerializerRegistry.cs:
##########
@@ -199,7 +199,7 @@ public ITypeSerializer GetSerializerFor(Type valueType)
return serializer;
}
- foreach (var supportedType in _serializerByType.Keys)
+ foreach (var supportedType in new
List<Type>(_serializerByType.Keys))
Review Comment:
Removing a serializer isn't really supported so I don't see how that could
happen.
Do you see a good use case where someone would actually want to remove a
serializer?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]