[java-opensaml COMMIT] /trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttribute...

noreply at shibboleth.net noreply at shibboleth.net
Wed Jun 18 08:41:41 EDT 2014


Author: rdw
Date: Wed Jun 18 08:41:41 2014
New Revision: 3931

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3931&view=rev
Log:
Fix tests by  not believing in Generics.

Modified:
    trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttributeConsumingServiceHandler.java

Modified: trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttributeConsumingServiceHandler.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttributeConsumingServiceHandler.java?rev=3931&r1=3930&r2=3931&view=diff
==============================================================================
--- trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttributeConsumingServiceHandler.java (original)
+++ trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/common/binding/impl/SAMLAddAttributeConsumingServiceHandler.java Wed Jun 18 08:41:41 2014
@@ -102,7 +102,7 @@
 
     /** {@inheritDoc}*/
     @Override protected void doInvoke(MessageContext<SAMLObject> messageContext) throws MessageHandlerException {
-        final SAMLObject message = messageContext.getMessage();
+        final Object message = messageContext.getMessage();
         if (!(message instanceof AuthnRequest)) {
             return;
         }



More information about the commits mailing list