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 bi...@apache.org on 2020/04/14 20:03:14 UTC

[axis-axis2-java-core] 08/15: Add few lines of comments.

This is an automated email from the ASF dual-hosted git repository.

billblough pushed a commit to branch AXIS2-4318
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-core.git

commit d767f27621bc5eab2486e9a50f024e77eebacb8b
Author: Sagara Gunathunga <sa...@apache.org>
AuthorDate: Wed Apr 11 14:10:47 2012 +0000

    Add few lines of comments.
---
 .../apache/axis2/transport/http/CommonsHTTPTransportSender.java    | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java b/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java
index 4181a56..f0a123d 100644
--- a/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java
+++ b/modules/transport/http/src/org/apache/axis2/transport/http/CommonsHTTPTransportSender.java
@@ -76,7 +76,12 @@ public class CommonsHTTPTransportSender extends AbstractHandler implements HTTPT
     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);