Skip to content

Commit 74d8b7a

Browse files
SQ fix
1 parent 12049a2 commit 74d8b7a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SysML2.NET.Serializer.TextualNotation/Writers/NameResolutionCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ private static void BuildInheritedEntries(IType type, Dictionary<string, HashSet
540540
return;
541541
}
542542

543-
foreach (var supertype in supertypes.Where(supertype => supertype != null && !ReferenceEquals(supertype, type)))
543+
foreach (var supertype in supertypes.Where(s => s != null && !ReferenceEquals(s, type)))
544544
{
545545
if (supertype is INamespace supertypeAsNamespace)
546546
{

0 commit comments

Comments
 (0)