Skip to content

Commit

Permalink
Don't trim() table since we need the newline most of the time.
Browse files Browse the repository at this point in the history
  • Loading branch information
drewr committed Jul 3, 2013
1 parent 4ab2cd1 commit 8a90f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/elasticsearch/common/table/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public String render(boolean withHeaders) {
out.append(row.toString().trim());
out.append("\n");
}
return out.toString().trim();
return out.toString();
}

private class Column {
Expand Down

0 comments on commit 8a90f4b

Please sign in to comment.