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 90ce2b7576ab67
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
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularFormatter.java	Sat Dec 28 16:45:04 2013 +0100
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularFormatter.java	Sat Dec 28 19:54:03 2013 +0100
     1.3 @@ -138,13 +138,13 @@
     1.4  			printTableIndent();
     1.5  			printTableBorder("│ ");
     1.6  		} else {
     1.7 -			printTableBorder(" │ ");
     1.8 +			printTableBorder(" │ ");
     1.9  		}
    1.10  
    1.11  		out.print(TerminalColor.Cyan, toString(value));
    1.12  
    1.13  		if (isCurrentColumnLast()) {
    1.14 -			printTableBorder(" │");
    1.15 +			printTableBorder(" │");
    1.16  		}
    1.17  
    1.18  	}