sosow0212 opened a new pull request, #664:
URL: https://github.com/apache/tomcat/pull/664

   While seeing the code in the Coyote project, I came across this code 
snippet: 
   `if (!(chr == Constants.SP || chr == Constants.HT))`.
   
   It appears to be challenging to read, so I enhanced its readability using De 
Morgan's law.
   
   ---
   before
   `if (!(chr == Constants.SP || chr == Constants.HT))`.
   
   after
   `if (chr != Constants.SP && chr != Constants.HT)`


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org

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


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

Reply via email to