From 6771bc57f190a8275922290077de1f6d6b374a6f Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 21 Oct 2014 14:39:14 +0000
Subject: [PATCH] Autorefactored removing default values for field initializers
---
opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
index 7842c9d..5d88eb0 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
@@ -56,7 +56,7 @@
private final List<String> currentRow = new ArrayList<String>();
/** Width of the table in columns. */
- private int totalColumns = 0;
+ private int totalColumns;
/** The padding to use for indenting the table. */
private final String indentPadding;
@@ -310,7 +310,7 @@
private final Map<Integer, Integer> fixedColumns = new HashMap<Integer, Integer>();
/** The number of characters the table should be indented. */
- private int indentWidth = 0;
+ private int indentWidth;
/**
* The character which should be used to separate the table
@@ -319,7 +319,7 @@
private char headingSeparator = DEFAULT_HEADING_SEPARATOR;
/** The column where the heading separator should begin. */
- private int headingSeparatorStartColumn = 0;
+ private int headingSeparatorStartColumn;
/**
* The padding which will be used to separate a cell's
@@ -334,7 +334,7 @@
private int totalWidth = MAX_LINE_WIDTH;
/** The output destination. */
- private PrintWriter writer = null;
+ private PrintWriter writer;
/**
* Creates a new text table printer for the specified output stream. The text table printer will have the following
--
Gitblit v1.10.0