From 3a9cfa61d75850ce15863d199362014d0e2d7240 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Thu, 25 Feb 2016 17:27:02 +0000
Subject: [PATCH] Prep work for OPENDJ-1342: align APIs for DNs and RDNs
---
opendj-server-legacy/src/main/java/org/opends/server/replication/common/MultiDomainServerState.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/replication/common/MultiDomainServerState.java b/opendj-server-legacy/src/main/java/org/opends/server/replication/common/MultiDomainServerState.java
index 1c5743d..0453407 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/replication/common/MultiDomainServerState.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/replication/common/MultiDomainServerState.java
@@ -12,7 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2006-2009 Sun Microsystems, Inc.
- * Portions Copyright 2011-2015 ForgeRock AS.
+ * Portions Copyright 2011-2016 ForgeRock AS.
*/
package org.opends.server.replication.common;
@@ -216,7 +216,7 @@
{
for (Entry<DN, ServerState> entry : list.entrySet())
{
- entry.getKey().toString(buffer);
+ buffer.append(entry.getKey());
buffer.append(":");
entry.getValue().toString(buffer);
buffer.append(";");
--
Gitblit v1.10.0