Remove some TODOs that have been implemented
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 22 Jul 2010 14:27:20 +0000 (14:27 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 22 Jul 2010 14:27:20 +0000 (14:27 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@966684 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/connector/Request.java

index e9b2bb5..14ea7a0 100644 (file)
@@ -1539,7 +1539,6 @@ public class Request
      }
 
     public AsyncContext startAsync() {
-        // TODO SERVLET3 - async
         return startAsync(getRequest(),response.getResponse());
     }
 
@@ -1557,9 +1556,6 @@ public class Request
         
         asyncContext.setStarted(getContext());
         asyncContext.init(request,response);
-        //TODO SERVLET3 - async - need to retrieve the ServletContext here
-        //or just the webapp classloader associated with to do 
-        //run with start(Runnable)
         asyncContext.setHasOriginalRequestAndResponse(request==getRequest() &&
                 response==getResponse().getResponse());