[java-shib-metadata] branch main updated: Add some missing annotations.
Scott Cantor
cantor.2 at osu.edu
Tue Mar 7 15:53:02 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-metadata.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-metadata.git;a=commit;h=7b8c83223101cdd29ab6486e3fa2f2c2fa2e9404
The following commit(s) were added to refs/heads/main by this push:
new 7b8c8322 Add some missing annotations.
7b8c8322 is described below
commit 7b8c83223101cdd29ab6486e3fa2f2c2fa2e9404
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Mar 7 10:53:00 2023 -0500
Add some missing annotations.
---
.../idp/saml/xmlobject/impl/KeyAuthorityUnmarshaller.java | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/shib-metadata-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/KeyAuthorityUnmarshaller.java b/shib-metadata-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/KeyAuthorityUnmarshaller.java
index 28989e0a..1b9c195c 100644
--- a/shib-metadata-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/KeyAuthorityUnmarshaller.java
+++ b/shib-metadata-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/KeyAuthorityUnmarshaller.java
@@ -40,7 +40,8 @@ public class KeyAuthorityUnmarshaller extends AbstractXMLObjectUnmarshaller {
private final Logger log = LoggerFactory.getLogger(KeyAuthorityUnmarshaller.class);
/** {@inheritDoc} */
- protected void processAttribute(final @Nonnull XMLObject xmlObject, final @Nonnull Attr attribute) throws UnmarshallingException {
+ protected void processAttribute(@Nonnull final XMLObject xmlObject, @Nonnull final Attr attribute)
+ throws UnmarshallingException {
final KeyAuthority authority = (KeyAuthority) xmlObject;
if (attribute.getLocalName().equals(KeyAuthority.VERIFY_DEPTH_ATTRIB_NAME)) {
@@ -55,8 +56,8 @@ public class KeyAuthorityUnmarshaller extends AbstractXMLObjectUnmarshaller {
}
/** {@inheritDoc} */
- protected void processChildElement(final @Nonnull XMLObject parentXMLObject, final @Nonnull XMLObject childXMLObject)
- throws UnmarshallingException {
+ protected void processChildElement(@Nonnull final XMLObject parentXMLObject,
+ @Nonnull final XMLObject childXMLObject) throws UnmarshallingException {
final KeyAuthority authority = (KeyAuthority) parentXMLObject;
if (childXMLObject instanceof KeyInfo) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list