From 89c103b6b1164cc89c844dc3055586ffaab4070a Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 27 Apr 2015 12:18:16 +0000
Subject: [PATCH] AutoRefactor'ed use diamond operator
---
opendj-sdk/opendj-cli/src/main/java/com/forgerock/opendj/cli/TextTablePrinter.java | 8 ++++----
1 files changed, 4 insertions(+), 4 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 5d88eb0..78b3833 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
@@ -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;
--
Gitblit v1.10.0