Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move asynchttpclient one package down #4854

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scalafix/output/src/main/scala/fix/RewritePackagesTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package fix

import org.http4s.blaze.client._
import org.http4s.blaze.server._
import org.http4s.asynchttpclient.client._
import _root_.org.http4s.asynchttpclient._
import org.http4s.jetty.client._
import org.http4s.jetty.server._
import org.http4s.okhttp.client._
Expand All @@ -22,7 +22,7 @@ object RewritePackagesTests {
val okhttpBuilderQualified = org.http4s.okhttp.client.OkHttpBuilder

val asyncHttpClient = AsyncHttpClient
val asyncHttpClientQualified = org.http4s.asynchttpclient.client.AsyncHttpClient
val asyncHttpClientQualified = _root_.org.http4s.asynchttpclient.AsyncHttpClient

val blazeClient = BlazeClient
val blazeClientQualified = org.http4s.blaze.client.BlazeClient
Expand Down
2 changes: 1 addition & 1 deletion scalafix/rules/src/main/scala/fix/RewritePackages.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class RewritePackages extends SemanticRule("RewritePackages") {
"org.http4s.server.jetty" -> "org.http4s.jetty.server",
"org.http4s.client.jetty" -> "org.http4s.jetty.client",
"org.http4s.client.okhttp" -> "org.http4s.okhttp.client",
"org.http4s.client.asynchttpclient" -> "org.http4s.asynchttpclient.client",
"org.http4s.client.asynchttpclient" -> "org.http4s.asynchttpclient",
"org.http4s.client.blaze" -> "org.http4s.blaze.client",
"org.http4s.server.blaze" -> "org.http4s.blaze.server",
)
Expand Down