[java-identity-provider COMMIT] /trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingpart...

noreply at shibboleth.net noreply at shibboleth.net
Sun Aug 3 10:12:44 EDT 2014


Author: rdw
Date: Sun Aug  3 10:12:44 2014
New Revision: 6378

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6378&view=rev
Log:
Typo

Modified:
    trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/AbstractMetadataProviderParser.java

Modified: trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/AbstractMetadataProviderParser.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/AbstractMetadataProviderParser.java?rev=6378&r1=6377&r2=6378&view=diff
==============================================================================
--- trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/AbstractMetadataProviderParser.java (original)
+++ trunk/idp-profile-spring/src/main/java/net/shibboleth/idp/profile/spring/relyingparty/metadata/AbstractMetadataProviderParser.java Sun Aug  3 10:12:44 2014
@@ -53,8 +53,8 @@
     private final Logger log = LoggerFactory.getLogger(AbstractMetadataProviderParser.class);
 
     /**
-     * Handle attributes which are inapropriate for specific implementations. The chaining metadata provider cannot have
-     * "requireValidMetadata" or "failFastInitialization" set, even though they are present in the schema. <br/>
+     * Handle attributes which are inappropriate for specific implementations. The chaining metadata provider cannot
+     * have "requireValidMetadata" or "failFastInitialization" set, even though they are present in the schema. <br/>
      * This method detects whether these elements are present and if the element is not a chaining provider returns
      * true, otherwise it returns false and emits a warning.
      * 
@@ -75,13 +75,15 @@
         return true;
     }
 
-    /** Is this the element at the top of the file?
+    /**
+     * Is this the element at the top of the file?
+     * 
      * @param element the element.
      * @return whether it is the outmost element.
      */
     private boolean isOuterElement(@Nonnull Element element) {
         return element.getParentNode().getNodeType() == Node.DOCUMENT_NODE;
-        
+
     }
 
     /**
@@ -172,11 +174,10 @@
         if (null != filters && !filters.isEmpty()) {
             builder.addPropertyValue("metadataFilter", SpringSupport.parseCustomElements(filters, parserContext));
         }
-        
-        final List<Element>trustEngines =
+
+        final List<Element> trustEngines =
                 ElementSupport.getChildElements(element, SecurityNamespaceHandler.TRUST_ENGINE_ELEMENT_NAME);
         SpringSupport.parseCustomElements(trustEngines, parserContext);
-        
 
     }
 }



More information about the commits mailing list