You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by GitBox <gi...@apache.org> on 2020/12/16 08:02:16 UTC

[GitHub] [tomcat] lanicc opened a new pull request #390: Optimize if condition

lanicc opened a new pull request #390:
URL: https://github.com/apache/tomcat/pull/390


   Optimize if condition in `AbstractProtocol.startAsyncTimeout()`,
   from `if (timeoutFuture == null || (timeoutFuture != null && timeoutFuture.isDone()))`
    to `if (timeoutFuture == null || timeoutFuture.isDone())`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[GitHub] [tomcat] lanicc closed pull request #390: Optimize if condition

Posted by GitBox <gi...@apache.org>.
lanicc closed pull request #390:
URL: https://github.com/apache/tomcat/pull/390


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org