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/TabSeparatedTablePrinter.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/TabSeparatedTablePrinter.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/TabSeparatedTablePrinter.java
index 29d92bf..68b2275 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/TabSeparatedTablePrinter.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/TabSeparatedTablePrinter.java
@@ -48,7 +48,7 @@
* Counts the number of separators that should be output the next time a non-empty cell is displayed. The tab
* separators are not displayed immediately so that we can avoid displaying unnecessary trailing separators.
*/
- private int requiredSeparators = 0;
+ private int requiredSeparators;
/** Private constructor. */
private Serializer() {
@@ -114,10 +114,10 @@
}
/** Indicates whether or not the headings should be output. */
- private boolean displayHeadings = false;
+ private boolean displayHeadings;
/** The output destination. */
- private PrintWriter writer = null;
+ private PrintWriter writer;
/**
* Creates a new tab separated table printer for the specified output stream. Headings will not be displayed by
--
Gitblit v1.10.0