Skip to content

Commit d3e8004

Browse files
committed
Implement joining for basic fomatter
1 parent 3e26d33 commit d3e8004

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

BooleanExpressionParser/Formatters/BasicFormatter.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,5 @@ public string FormatTruthTable(Ast ast, List<bool[]> table, string label = "Resu
4242
return sb.ToString();
4343
}
4444

45-
public string JoinTruthTables(params string[] tables)
46-
{
47-
throw new NotImplementedException();
48-
}
45+
public string JoinTruthTables(params string[] tables) => string.Join(Environment.NewLine, tables);
4946
}

0 commit comments

Comments
 (0)