mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
27.18.2015 89c103b6b1164cc89c844dc3055586ffaab4070a
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
@@ -22,7 +22,7 @@
 *
 *
 *      Copyright 2007-2008 Sun Microsystems, Inc.
 *      Portions Copyright 2014 ForgeRock AS
 *      Portions Copyright 2014-2015 ForgeRock AS
 */
package com.forgerock.opendj.cli;
@@ -50,10 +50,10 @@
        /**The real column widths taking into account size constraints but
         not including padding or separators.*/
        private final List<Integer> columnWidths = new ArrayList<Integer>();
        private final List<Integer> columnWidths = new ArrayList<>();
        /** The cells in the current row. */
        private final List<String> currentRow = new ArrayList<String>();
        private final List<String> currentRow = new ArrayList<>();
        /** Width of the table in columns. */
        private int totalColumns;
@@ -307,7 +307,7 @@
    private boolean displayHeadings = true;
    /** Table indicating whether or not a column is fixed width. */
    private final Map<Integer, Integer> fixedColumns = new HashMap<Integer, Integer>();
    private final Map<Integer, Integer> fixedColumns = new HashMap<>();
    /** The number of characters the table should be indented. */
    private int indentWidth;