[java-opensaml] branch main updated: Fix typo in exception msg.

Scott Cantor cantor.2 at osu.edu
Wed Aug 23 16:12:01 UTC 2023


This is an automated email from the git hooks/post-receive script.

scantor 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=38fe55f35dd21beda2cba824b70fb54617201d5d

The following commit(s) were added to refs/heads/main by this push:
     new 38fe55f35 Fix typo in exception msg.
38fe55f35 is described below

commit 38fe55f35dd21beda2cba824b70fb54617201d5d
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Aug 23 12:11:57 2023 -0400

    Fix typo in exception msg.
---
 .../java/org/opensaml/core/xml/io/AbstractXMLObjectUnmarshaller.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opensaml-core-api/src/main/java/org/opensaml/core/xml/io/AbstractXMLObjectUnmarshaller.java b/opensaml-core-api/src/main/java/org/opensaml/core/xml/io/AbstractXMLObjectUnmarshaller.java
index 9aee7a83c..3f086cf9d 100644
--- a/opensaml-core-api/src/main/java/org/opensaml/core/xml/io/AbstractXMLObjectUnmarshaller.java
+++ b/opensaml-core-api/src/main/java/org/opensaml/core/xml/io/AbstractXMLObjectUnmarshaller.java
@@ -424,7 +424,7 @@ public abstract class AbstractXMLObjectUnmarshaller implements Unmarshaller {
             throws UnmarshallingException {
 
         if (strictMode) {
-            throw new UnmarshallingException(String.format("Saw invalid element content %s of elemment %s",
+            throw new UnmarshallingException(String.format("Saw invalid element content %s of element %s",
                     elementContent, xmlObject.getElementQName()));
         }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list