From 047e35b7d5035b191a808c6f3382e43758dee920 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.
---
opends/src/server/org/opends/server/config/JMXMBean.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/config/JMXMBean.java b/opends/src/server/org/opends/server/config/JMXMBean.java
index 92d2b13..396c08a 100644
--- a/opends/src/server/org/opends/server/config/JMXMBean.java
+++ b/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