From e79461c53adce17f83f30954f8a03d67bb761a1f Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 06 Jul 2015 15:42:24 +0000
Subject: [PATCH] AutoRefactor'ed Use Diamond Operator
---
opendj-server-legacy/src/main/java/org/opends/quicksetup/BuildInformation.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/BuildInformation.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/BuildInformation.java
index 58a8d92..97c989d 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/BuildInformation.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/BuildInformation.java
@@ -64,7 +64,7 @@
public static BuildInformation create(Installation installation)
throws ApplicationException {
BuildInformation bi = new BuildInformation();
- List<String> args = new ArrayList<String>();
+ List<String> args = new ArrayList<>();
args.add(Utils.getScriptPath(
Utils.getPath(installation.getServerStartCommandFile())));
args.add("-F"); // full verbose
@@ -258,7 +258,7 @@
return bi;
}
- private Map<String, String> values = new HashMap<String, String>();
+ private Map<String, String> values = new HashMap<>();
/**
* Gets the name of this build. This is the first line of the output
--
Gitblit v1.10.0