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/main/java/org/opends/server/replication/protocol/MonitorMsg.java | 8 +++-----
1 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/MonitorMsg.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/MonitorMsg.java
index 9c73aa0..d296e35 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/MonitorMsg.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/protocol/MonitorMsg.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2009 Sun Microsystems, Inc.
- * Portions Copyright 2013-2014 ForgeRock AS.
+ * Portions Copyright 2013-2015 ForgeRock AS.
*/
package org.opends.server.replication.protocol;
@@ -79,11 +79,9 @@
/** This replication server DbState. */
private ServerState replServerDbState;
/** The data related to the LDAP servers connected to this RS. */
- private final Map<Integer, ServerData> ldapStates =
- new HashMap<Integer, ServerData>();
+ private final Map<Integer, ServerData> ldapStates = new HashMap<>();
/** The data related to the RS servers connected to this RS. */
- private final Map<Integer, ServerData> rsStates =
- new HashMap<Integer, ServerData>();
+ private final Map<Integer, ServerData> rsStates = new HashMap<>();
}
private final SubTopoMonitorData data = new SubTopoMonitorData();
--
Gitblit v1.10.0