File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ private static ParseNodeFactoryRegistry EnableBackingStoreForParseNodeRegistry(P
6969 EnableBackingStoreForParseNodeRegistry ( ParseNodeFactoryRegistry . DefaultInstance ) ;
7070 var keysToUpdate = registry
7171 . ContentTypeAssociatedFactories
72- . Where ( static x => x . Value is not BackingStoreParseNodeFactory or ParseNodeFactoryRegistry )
72+ . Where ( static x => x . Value is not ( BackingStoreParseNodeFactory or ParseNodeFactoryRegistry ) )
7373 . Select ( static x => x . Key )
7474 . ToArray ( ) ;
7575 foreach ( var key in keysToUpdate )
@@ -85,7 +85,7 @@ private static SerializationWriterFactoryRegistry EnableBackingStoreForSerializa
8585 EnableBackingStoreForSerializationRegistry ( SerializationWriterFactoryRegistry . DefaultInstance ) ;
8686 var keysToUpdate = registry
8787 . ContentTypeAssociatedFactories
88- . Where ( static x => x . Value is not BackingStoreSerializationWriterProxyFactory or SerializationWriterFactoryRegistry )
88+ . Where ( static x => x . Value is not ( BackingStoreSerializationWriterProxyFactory or SerializationWriterFactoryRegistry ) )
8989 . Select ( static x => x . Key )
9090 . ToArray ( ) ;
9191
You can’t perform that action at this time.
0 commit comments