Skip to content

Commit 4dbb567

Browse files
committed
Update .NET to match changes made in PRs #221 and #222 (empty/NULL token ToString() should be empty string rather than "true").
1 parent d00b994 commit 4dbb567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/TagExpressions/TagExpression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public bool Evaluate(IEnumerable<string> inputs)
4242
public class NullExpression : TagExpression
4343
{
4444
/// <inheritdoc/>
45-
public override string ToString() => "true";
45+
public override string ToString() => "";
4646

4747
/// <inheritdoc/>
4848
internal override bool EvaluateInternal(HashSet<string> inputs) => true;

0 commit comments

Comments
 (0)