[java-opensaml] 24/24: Fix call to QName-based map.

Brent Putman putmanb at georgetown.edu
Wed Sep 27 16:46:18 EDT 2017


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

putmanb pushed a commit to branch maint-3.3
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=f32f38ff1ce72ff1aa67039e7b39ba288ce1c6bb

commit f32f38ff1ce72ff1aa67039e7b39ba288ce1c6bb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Sep 13 15:38:57 2017 -0400

    Fix call to QName-based map.
---
 .../src/main/java/org/opensaml/soap/util/SOAPSupport.java             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 300b6a6..eaa4131 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
@@ -347,8 +347,8 @@ public final class SOAPSupport {
             }
         }
         if (soapObject instanceof AttributeExtensibleXMLObject) {
-            String value = StringSupport.trimOrNull(((AttributeExtensibleXMLObject) soapObject)
-                    .getUnknownAttributes().get(org.opensaml.soap.soap12.RelayBearing.SOAP12_RELAY_ATTR_LOCAL_NAME));
+            final String value = StringSupport.trimOrNull(((AttributeExtensibleXMLObject) soapObject)
+                    .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