summaryrefslogtreecommitdiffstats
path: root/proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java')
-rw-r--r--proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java b/proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java
index a57586f..2601215 100644
--- a/proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java
+++ b/proxy/code/src/com/redhat/rhn/common/cert/CertificateFactory.java
@@ -108,8 +108,8 @@ public class CertificateFactory {
Certificate result = new Certificate();
Element root = doc.getRootElement();
if (!ELEM_CERT.equals(root.getName())) {
- throw new JDOMException("Expected root element in " + source + " to be " +
- ELEM_CERT + " but found " + root.getName());
+ throw new JDOMException("Expected root element in " + source +
+ " to be " + ELEM_CERT + " but found " + root.getName());
}
Element signature = root.getChild(ELEM_SIGNATURE);
if (signature == null) {