Skip to content

Commit

Permalink
write concat in 3 lines :D
Browse files Browse the repository at this point in the history
  • Loading branch information
kgyrtkirk committed Oct 11, 2023
1 parent 7714e2f commit 78d1d31
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1533,7 +1533,9 @@ static class ResultsPrinter
private ResultsPrinter(String name, List<Object[]> results)
{
sb = new StringBuilder();
sb.append("-- " + name + " results --\n");
sb.append("-- ");
sb.append(name);
sb.append(" results --\n");

for (int rowIndex = 0; rowIndex < results.size(); rowIndex++) {
printArray(results.get(rowIndex));
Expand Down

0 comments on commit 78d1d31

Please sign in to comment.