You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by sa...@apache.org on 2012/04/11 16:10:47 UTC

svn commit: r1324772 - /axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java

Author: sagara
Date: Wed Apr 11 14:10:47 2012
New Revision: 1324772

URL: http://svn.apache.org/viewvc?rev=1324772&view=rev
Log:
Add few lines of comments. 

Modified:
    axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java

Modified: axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java?rev=1324772&r1=1324771&r2=1324772&view=diff
==============================================================================
--- axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java (original)
+++ axis/axis2/java/core/branches/AXIS2-4318/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java Wed Apr 11 14:10:47 2012
@@ -76,7 +76,12 @@ public class CommonsHTTPTransportSender 
     private int soTimeout = HTTPConstants.DEFAULT_SO_TIMEOUT;
 
     private int connectionTimeout = HTTPConstants.DEFAULT_CONNECTION_TIMEOUT;
-
+    
+    /*
+     * It's Required to keep this method to keep backward compatibility because
+     * still it's possible to register CommonsHTTPTransportSender in the
+     * axis2.xml.
+     */
     public void cleanup(MessageContext msgContext) throws AxisFault {
         
             HttpMethod httpMethod = (HttpMethod) msgContext.getProperty(HTTPConstants.HTTP_METHOD);