CSHARP-16 Fix printing bug

This commit is contained in:
Andrew Cooper
2022-07-14 00:24:10 +10:00
parent a648ebf044
commit 98344717f7
4 changed files with 35 additions and 20 deletions

View File

@@ -10,5 +10,11 @@ internal class Tail : Part
{
}
public void AppendTo(StringBuilder builder) => builder.AppendLine("TTTTTB B");
public void AppendTo(StringBuilder builder)
{
if (IsPresent)
{
builder.AppendLine("TTTTTB B");
}
}
}