Skip to content

Commit 23f21c9

Browse files
committed
Remove reactory-netty
1 parent f955416 commit 23f21c9

File tree

12 files changed

+295
-1451
lines changed

12 files changed

+295
-1451
lines changed

java/client/src/org/openqa/selenium/remote/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ java_export(
4040
"//java/client/src/org/openqa/selenium/json",
4141
"//java/client/src/org/openqa/selenium/os",
4242
"//java/client/src/org/openqa/selenium/remote/http/netty",
43-
"//java/client/src/org/openqa/selenium/remote/http/reactor",
4443
"//java/client/src/org/openqa/selenium/remote/tracing",
4544
artifact("com.google.guava:guava"),
4645
artifact("net.bytebuddy:byte-buddy"),

java/client/src/org/openqa/selenium/remote/http/netty/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java_library(
1313
"//java/client/src/org/openqa/selenium:core",
1414
"//java/client/src/org/openqa/selenium/remote/http",
1515
artifact("com.google.guava:guava"),
16-
artifact("com.typesafe.netty:netty-reactive-streams"),
16+
# artifact("com.typesafe.netty:netty-reactive-streams"),
1717
artifact("org.asynchttpclient:async-http-client"),
1818
artifact("io.netty:netty-buffer"),
1919
artifact("io.netty:netty-codec-http"),

java/client/src/org/openqa/selenium/remote/http/reactor/BUILD.bazel

-32
This file was deleted.

java/client/src/org/openqa/selenium/remote/http/reactor/ReactorClient.java

-253
This file was deleted.

java/client/test/org/openqa/selenium/remote/http/BUILD.bazel

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ java_test_suite(
1313
"//java:auto-service",
1414
"//java/client/src/org/openqa/selenium/remote/http",
1515
"//java/client/src/org/openqa/selenium/remote/http/netty",
16-
"//java/client/src/org/openqa/selenium/remote/http/reactor",
1716
"//java/client/test/org/openqa/selenium/testing:annotations",
1817
artifact("org.assertj:assertj-core"),
1918
artifact("com.google.guava:guava"),

java/client/test/org/openqa/selenium/remote/http/HttpClientFactoryTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public void canCreateDefaultHttpClientFactory() {
5555

5656
@Test
5757
public void canCreateHttpClientFactoryByName() {
58-
HttpClient.Factory factory = HttpClient.Factory.create("reactor");
59-
assertThat(factory.getClass().getAnnotation(HttpClientName.class).value()).isEqualTo("reactor");
58+
HttpClient.Factory factory = HttpClient.Factory.create("netty");
59+
assertThat(factory.getClass().getAnnotation(HttpClientName.class).value()).isEqualTo("netty");
6060
}
6161

6262
@Test

java/client/test/org/openqa/selenium/remote/http/reactor/BUILD.bazel

-21
This file was deleted.

java/client/test/org/openqa/selenium/remote/http/reactor/ReactorClientDomainSocketTest.java

-29
This file was deleted.

0 commit comments

Comments
 (0)