pjfanning commented on code in PR #809:
URL: https://github.com/apache/pekko-http/pull/809#discussion_r2395541077
##########
http-core/src/main/scala/org/apache/pekko/http/impl/model/parser/UriParser.scala:
##########
@@ -365,7 +365,7 @@ private[http] final class UriParser(
///////////// helpers /////////////
- private def appendLowered(): Rule0 = rule {
run(sb.append(CharUtils.toLowerCase(lastChar))) }
+ private def appendLowered(): Rule0 = rule {
run(sb.append(CU.toLowerCase(lastChar))) }
Review Comment:
Parboiled CharUtils only deals with the 26 standard letters of the latin
alphabet (the ones in 7 bit ASCII table) - same as the pekko-http internal
toLowerCase.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]