Skip to content

Commit 8e44099

Browse files
committed
[java] Run the format script
1 parent 65ca57a commit 8e44099

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/src/org/openqa/selenium/remote/http/jdk/JdkHttpClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,8 @@ public void onError(java.net.http.WebSocket webSocket, Throwable error) {
230230
throw new ConnectionFailedException("JdkWebSocket initial request canceled", e);
231231
} catch (ExecutionException e) {
232232
Throwable cause = e.getCause();
233-
throw new ConnectionFailedException("JdkWebSocket initial request execution error", (cause != null) ? cause : e);
233+
throw new ConnectionFailedException(
234+
"JdkWebSocket initial request execution error", (cause != null) ? cause : e);
234235
} catch (InterruptedException e) {
235236
Thread.currentThread().interrupt();
236237
throw new ConnectionFailedException("JdkWebSocket initial request interrupted", e);

0 commit comments

Comments
 (0)