[java-opensaml COMMIT] /trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java

noreply at shibboleth.net noreply at shibboleth.net
Wed May 6 17:14:30 EDT 2015


Author: putmanb
Date: Wed May  6 17:14:30 2015
New Revision: 4267

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4267&view=rev
Log:
Change param name to not hide class field name.

Modified:
    trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java

Modified: trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java?rev=4267&r1=4266&r2=4267&view=diff
==============================================================================
--- trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java	(original)
+++ trunk/opensaml-soap-api/src/main/java/org/opensaml/soap/client/http/PipelineHttpSOAPClient.java	Wed May  6 17:14:30 2015
@@ -439,13 +439,13 @@
     
     /**
      * Get the {@link HttpClientMessagePipeline} instance to be processed.
-     * @param pipelineName the pipeline name to resolve
+     * @param name the pipeline name to resolve
      * @return the new pipeline instance
      */
     @Nullable protected HttpClientMessagePipeline<InboundMessageType, OutboundMessageType> getPipeline(
-            @Nullable final String pipelineName) {
+            @Nullable final String name) {
         // Note: in a Spring environment, the actual factory impl might be a proxy via ServiceLocatorFactoryBean
-        return pipelineFactory.newInstance(pipelineName);
+        return pipelineFactory.newInstance(name);
     }
     
     /**



More information about the commits mailing list