From a89f7014aeb71dba5c94404dfea7eb89e7eeee74 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 08 Jul 2015 06:48:02 +0000
Subject: [PATCH] AutoRefactor'ed Use Diamond Operator
---
opendj-server-legacy/src/test/java/org/opends/server/tools/VerifyIndexTestCase.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/tools/VerifyIndexTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/tools/VerifyIndexTestCase.java
index df4d3e2..e88b0c3 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/tools/VerifyIndexTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/tools/VerifyIndexTestCase.java
@@ -72,7 +72,7 @@
// Add the airius.com suffix to userRoot
InternalClientConnection rootConnection =
InternalClientConnection.getRootConnection();
- ArrayList<Modification> mods = new ArrayList<Modification>();
+ ArrayList<Modification> mods = new ArrayList<>();
mods.add(new Modification(ModificationType.ADD,
Attributes.create("ds-cfg-base-dn", "o=airius.com")));
String userRootDN = "ds-cfg-backend-id=userRoot,cn=Backends,cn=config";
@@ -94,7 +94,7 @@
// remove the airius.com suffix to userRoot
InternalClientConnection rootConnection =
InternalClientConnection.getRootConnection();
- ArrayList<Modification> mods = new ArrayList<Modification>();
+ ArrayList<Modification> mods = new ArrayList<>();
mods.add(new Modification(ModificationType.DELETE,
Attributes.create("ds-cfg-base-dn", "o=airius.com")));
String userRootDN = "ds-cfg-backend-id=userRoot,cn=Backends,cn=config";
--
Gitblit v1.10.0