From 998747bfaaa3c6b28bbfaf0e282e6c0ccbf46bc0 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 18:44:58 +0000
Subject: [PATCH] AutoRefactor: fix StringBuilder usage

---
 opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
index 14633cc..5ed8fd7 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/protocols/ldap/CompareRequestProtocolOp.java
@@ -22,7 +22,7 @@
  *
  *
  *      Copyright 2006-2008 Sun Microsystems, Inc.
- *      Portions Copyright 2014 ForgeRock AS
+ *      Portions Copyright 2014-2015 ForgeRock AS
  */
 package org.opends.server.protocols.ldap;
 
@@ -163,11 +163,11 @@
   public void toString(StringBuilder buffer)
   {
     buffer.append("CompareRequest(dn=");
-    buffer.append(dn.toString());
+    buffer.append(dn);
     buffer.append(", attribute=");
     buffer.append(attributeType);
     buffer.append(", value=");
-    buffer.append(assertionValue.toString());
+    buffer.append(assertionValue);
     buffer.append(")");
   }
 
@@ -195,7 +195,7 @@
 
     buffer.append(indentBuf);
     buffer.append("  Target DN:  ");
-    buffer.append(dn.toString());
+    buffer.append(dn);
     buffer.append(EOL);
 
     buffer.append(indentBuf);

--
Gitblit v1.10.0