Skip to content

Commit

Permalink
Remove duplicated pound sign
Browse files Browse the repository at this point in the history
  • Loading branch information
inputfalken committed Sep 29, 2024
1 parent 3ab2aea commit d40e79a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ private static IEnumerable<string> TypeContent(

var yields = dataMembers
.Select(static x => x.IsUnknown
? $@"if ({x.NameRef}.IsValueCreated) {{ yield return new (""#{x.DbRef}"", ""{x.DDB.AttributeName}""); foreach (var x in ({x.DDB.DataMember.Name} as {x.AttributeInterfaceName}).{AttributeExpressionNameTrackerInterfaceAccessedNames}()) {{ yield return x; }} }}"
: $@"if ({x.NameRef}.IsValueCreated) yield return new (""#{x.DbRef}"", ""{x.DDB.AttributeName}"");"
? $@"if ({x.NameRef}.IsValueCreated) {{ yield return new (""{x.DbRef}"", ""{x.DDB.AttributeName}""); foreach (var x in ({x.DDB.DataMember.Name} as {x.AttributeInterfaceName}).{AttributeExpressionNameTrackerInterfaceAccessedNames}()) {{ yield return x; }} }}"
: $@"if ({x.NameRef}.IsValueCreated) yield return new (""{x.DbRef}"", ""{x.DDB.AttributeName}"");"
)
.Append($@"if ({self}.IsValueCreated) yield return new ({self}.Value, ""{typeSymbol.Name}"");");

Expand Down

0 comments on commit d40e79a

Please sign in to comment.