Don't trim() table since we need the newline most of the time.

This commit is contained in:
Andrew Raines 2013-07-02 23:17:02 -05:00
parent 4ab2cd13f2
commit 8a90f4b5ff
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class Table {
out.append(row.toString().trim());
out.append("\n");
}
return out.toString().trim();
return out.toString();
}
private class Column {