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/plugins/LastModPluginTestCase.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
index 5722da4..09e2898 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/plugins/LastModPluginTestCase.java
@@ -212,7 +212,7 @@
public Object[][] getInvalidConfigs()
throws Exception
{
- ArrayList<Entry> entries = new ArrayList<Entry>();
+ ArrayList<Entry> entries = new ArrayList<>();
for (String s : PluginType.getPluginTypeNames())
{
@@ -302,7 +302,7 @@
{
TestCaseUtils.initializeTestBackend(true);
- ArrayList<Modification> mods = new ArrayList<Modification>();
+ ArrayList<Modification> mods = new ArrayList<>();
mods.add(new Modification(ModificationType.REPLACE,
Attributes.create("description", "foo")));
--
Gitblit v1.10.0