java/sql-dk/src/info/globalcode/sql/dk/formatting/TabularWrappingFormatter.java
branchv_0
changeset 169 4e131a0b521a
parent 155 eb3676c6929b
child 219 3b1733fb3793
equal deleted inserted replaced
168:0e8108da0305 169:4e131a0b521a
    69 				} else {
    69 				} else {
    70 					printTableBorder(" │ ");
    70 					printTableBorder(" │ ");
    71 				}
    71 				}
    72 				String[] columnArray = currentRow.get(i);
    72 				String[] columnArray = currentRow.get(i);
    73 				if (wrappedLine < columnArray.length) {
    73 				if (wrappedLine < columnArray.length) {
    74 					printValueWithNewLinesReplaced(columnArray[wrappedLine]);
    74 					printValueWithWhitespaceReplaced(columnArray[wrappedLine]);
    75 
    75 
    76 					if (wrappedLine < columnArray.length - 1) {
    76 					if (wrappedLine < columnArray.length - 1) {
    77 						out.print(TerminalColor.Red, "↩");
    77 						out.print(TerminalColor.Red, "↩");
    78 						hasMoreWrappedLines = true;
    78 						hasMoreWrappedLines = true;
    79 					} else {
    79 					} else {