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/installer/ConfiguredReplication.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ConfiguredReplication.java b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ConfiguredReplication.java
index ba5969c..b7d4253 100644
--- a/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ConfiguredReplication.java
+++ b/opendj-server-legacy/src/main/java/org/opends/quicksetup/installer/ConfiguredReplication.java
@@ -22,6 +22,7 @@
*
*
* Copyright 2008 Sun Microsystems, Inc.
+ * Portions Copyright 2015 ForgeRock AS.
*/
package org.opends.quicksetup.installer;
@@ -67,9 +68,9 @@
this.synchProviderEnabled = synchProviderEnabled;
this.replicationServerCreated = replicationServerCreated;
this.secureReplicationEnabled = secureReplicationEnabled;
- this.newReplicationServers = new HashSet<String>();
+ this.newReplicationServers = new HashSet<>();
this.newReplicationServers.addAll(newReplicationServers);
- this.domainsConf = new HashSet<ConfiguredDomain>();
+ this.domainsConf = new HashSet<>();
this.domainsConf.addAll(domainsConf);
}
--
Gitblit v1.10.0