From 7efc6f92f5937fb085bb0b72b09214cd79600b8f Mon Sep 17 00:00:00 2001
From: Violette Roche-Montane <violette.roche-montane@forgerock.com>
Date: Thu, 03 Apr 2014 15:21:56 +0000
Subject: [PATCH] Checkpoint for OPENDJ-1303 "opendj-cli" - Moved AuthenticatedConnectionFactory from tools to cli. -- Undo modifications on tools about abstract authenticated connection factory. (and deleted the file) -- Deleted the file from the tools. - Added functions to opendj-cli Utils. - Trivial code cleanup.
---
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java | 36 +++++++++---------------------------
1 files changed, 9 insertions(+), 27 deletions(-)
diff --git a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
index ca8906c..22f925d 100644
--- a/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
+++ b/opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java
@@ -74,27 +74,21 @@
this.indentPadding = builder.toString();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void addCell(String s) {
currentRow.add(s);
column++;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void addColumn(int width) {
columnWidths.add(width);
totalColumns++;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void addHeading(String s) {
if (displayHeadings) {
@@ -102,9 +96,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void endHeader() {
if (displayHeadings) {
@@ -145,9 +137,7 @@
}
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void endRow() {
boolean isRemainingText;
@@ -222,17 +212,13 @@
} while (isRemainingText);
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void endTable() {
writer.flush();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void startHeader() {
determineColumnWidths();
@@ -241,9 +227,7 @@
currentRow.clear();
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
public void startRow() {
column = 0;
@@ -487,9 +471,7 @@
this.totalWidth = totalWidth;
}
- /**
- * {@inheritDoc}
- */
+ /** {@inheritDoc} */
@Override
protected TableSerializer getSerializer() {
return new Serializer();
--
Gitblit v1.10.0