TabularFormatter: no nonbreakable spaces in table cell padding v_0
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat, 28 Dec 2013 19:54:03 +0100
branchv_0
changeset 90 ce2b7576ab67
parent 89 98d18e9a357b
child 91 43e8d52091d5
TabularFormatter: no nonbreakable spaces in table cell padding
java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularFormatter.java
--- a/java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularFormatter.java	Sat Dec 28 16:45:04 2013 +0100
+++ b/java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularFormatter.java	Sat Dec 28 19:54:03 2013 +0100
@@ -138,13 +138,13 @@
 			printTableIndent();
 			printTableBorder("│ ");
 		} else {
-			printTableBorder(" │ ");
+			printTableBorder(" │ ");
 		}
 
 		out.print(TerminalColor.Cyan, toString(value));
 
 		if (isCurrentColumnLast()) {
-			printTableBorder(" │");
+			printTableBorder(" │");
 		}
 
 	}