[java-opensaml] branch main updated: IDP-2069 - Null Handling Task
Rod Widdowson
rdw at steadingsoftware.com
Fri Mar 17 14:25:55 UTC 2023
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=26a138b7f8fa2dd6009aa990b7316f6971acd27e
The following commit(s) were added to refs/heads/main by this push:
new 26a138b7f IDP-2069 - Null Handling Task
26a138b7f is described below
commit 26a138b7f8fa2dd6009aa990b7316f6971acd27e
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Mar 17 14:25:53 2023 +0000
IDP-2069 - Null Handling Task
https://shibboleth.atlassian.net/browse/IDP-2069
missed static final Qname annotation
---
.../org/opensaml/xmlsec/signature/impl/ECKeyValueUnmarshaller.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/signature/impl/ECKeyValueUnmarshaller.java b/opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/signature/impl/ECKeyValueUnmarshaller.java
index cc1eb7e18..330d4058e 100644
--- a/opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/signature/impl/ECKeyValueUnmarshaller.java
+++ b/opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/signature/impl/ECKeyValueUnmarshaller.java
@@ -17,6 +17,7 @@
package org.opensaml.xmlsec.signature.impl;
+import javax.annotation.Nonnull;
import javax.xml.namespace.QName;
import org.opensaml.core.xml.XMLObject;
@@ -34,7 +35,7 @@ import org.w3c.dom.Attr;
public class ECKeyValueUnmarshaller extends AbstractXMLSignatureUnmarshaller {
/** ECParameters element name. */
- public static final QName ECPARAMETERS_ELEMENT_NAME = new QName(SignatureConstants.XMLSIG11_NS, "ECParameters");
+ @Nonnull public static final QName ECPARAMETERS_ELEMENT_NAME = new QName(SignatureConstants.XMLSIG11_NS, "ECParameters");
/** {@inheritDoc} */
protected void processAttribute(final XMLObject xmlObject, final Attr attribute) throws UnmarshallingException {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list