From 31216400c324b43c15b8a9eea6d89604247ebb14 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Mon, 03 Feb 2014 12:10:05 +0000
Subject: [PATCH] Removed now useless calls to String.valueOf() on arguments of ArgN.get(...).
---
opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java b/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java
index 11df00b..97347cf 100644
--- a/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java
+++ b/opendj3-server-dev/src/server/org/opends/server/protocols/ldap/LDAPStatistics.java
@@ -156,8 +156,7 @@
// explicitly created and registered by the LDAP connection handler
// or an LDAP client connection.
LocalizableMessage message =
- ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION.get(String
- .valueOf(configuration.dn()));
+ ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION.get(configuration.dn());
throw new ConfigException(message);
}
--
Gitblit v1.10.0