Skip to content

Commit

Permalink
Removing garbage
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrocruz committed Oct 3, 2023
1 parent bbde07f commit c7aabbb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion zio-http/src/main/scala/zio/http/URL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ object URL {
private[http] def fromAbsoluteURI(uri: URI): Option[URL] = {
for {
scheme <- Scheme.decode(uri.getScheme)
xx = scheme.defaultPort
host <- Option(uri.getHost)
path <- Option(uri.getRawPath)
port = Option(uri.getPort).filter(_ != -1).getOrElse(portFromScheme(scheme))
Expand Down

0 comments on commit c7aabbb

Please sign in to comment.