| opends/src/server/org/opends/server/util/table/TextTablePrinter.java | ●●●●● patch | view | raw | blame | history |
opends/src/server/org/opends/server/util/table/TextTablePrinter.java
@@ -221,9 +221,14 @@ builder.append(head); // Now pad with extra space to make up the width. for (int j = head.length(); j < width; j++) { // Only if it's not the last cell (see issue #3210) if (i != currentRow.size() - 1) { for (int j = head.length(); j < width; j++) { builder.append(' '); } } // Update the row contents. currentRow.set(i, tail);