[java-opensaml] branch master updated: Fix call to QName-based map.
Scott Cantor
cantor.2 at osu.edu
Wed Sep 13 15:38:59 EDT 2017
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=e09f46b14e16e4e47b17f2d728df440ac2cfc851
The following commit(s) were added to refs/heads/master by this push:
new e09f46b Fix call to QName-based map.
e09f46b is described below
commit e09f46b14e16e4e47b17f2d728df440ac2cfc851
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Sep 13 15:38:57 2017 -0400
Fix call to QName-based map.
---
opensaml-soap-api/src/main/java/org/opensaml/soap/util/SOAPSupport.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-soap-api/src/main/java/org/opensaml/soap/util/SOAPSupport.java b/opensaml-soap-api/src/main/java/org/opensaml/soap/util/SOAPSupport.java
index dd17c3c..88fbc05 100644
--- a/opensaml-soap-api/src/main/java/org/opensaml/soap/util/SOAPSupport.java
+++ b/opensaml-soap-api/src/main/java/org/opensaml/soap/util/SOAPSupport.java
@@ -351,7 +351,7 @@ public final class SOAPSupport {
}
if (soapObject instanceof AttributeExtensibleXMLObject) {
final String value = StringSupport.trimOrNull(((AttributeExtensibleXMLObject) soapObject)
- .getUnknownAttributes().get(org.opensaml.soap.soap12.RelayBearing.SOAP12_RELAY_ATTR_LOCAL_NAME));
+ .getUnknownAttributes().get(org.opensaml.soap.soap12.RelayBearing.SOAP12_RELAY_ATTR_NAME));
return Objects.equals("1", value) || Objects.equals("true", value);
}
return false;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list