From c232180e07bb023e16c8c68701573125df85dfcd Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 29 Sep 2006 21:32:34 +0000
Subject: [PATCH] Update the JMXMBean class so that it passes the checkstyle tests.
---
opendj-sdk/opends/src/server/org/opends/server/config/JMXMBean.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/config/JMXMBean.java b/opendj-sdk/opends/src/server/org/opends/server/config/JMXMBean.java
index 92d2b13..396c08a 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/config/JMXMBean.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/config/JMXMBean.java
@@ -1213,8 +1213,8 @@
}
/**
- * Get the client JMX connection to use. Returns null if an Exception is caught or if
- * the AccessControlContext subject is null.
+ * Get the client JMX connection to use. Returns null if an Exception is
+ * caught or if the AccessControlContext subject is null.
*
* @return The JmxClientConnection.
*/
@@ -1228,9 +1228,9 @@
javax.security.auth.Subject subject = javax.security.auth.Subject
.getSubject(acc);
if(subject != null) {
- Set privateCreds = subject.getPrivateCredentials(Credential.class);
- jmxClientConnection = ((Credential) privateCreds
- .iterator().next()).getClientConnection();
+ Set privateCreds = subject.getPrivateCredentials(Credential.class);
+ jmxClientConnection = ((Credential) privateCreds
+ .iterator().next()).getClientConnection();
}
}
catch (Exception e) {}
--
Gitblit v1.10.0