Minor improvement to javadoc
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 18 Jul 2011 15:01:41 +0000 (15:01 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 18 Jul 2011 15:01:41 +0000 (15:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1147915 13f79535-47bb-0310-9956-ffa450edef68

java/javax/servlet/AsyncContext.java

index 60d32fa..f965f4a 100644 (file)
@@ -73,12 +73,12 @@ public interface AsyncContext {
     throws ServletException;
     
     /**
-     * Get timeout in milliseconds
+     * Get timeout in milliseconds. 0 or less indicates no timeout.
      */
     long getTimeout();
     
     /**
-     * Set timeout in milliseconds
+     * Set timeout in milliseconds. 0 or less indicates no timeout.
      */
     void setTimeout(long timeout);
 }