Skip to content

Commit a577a2c

Browse files
committed
Minor formatting tweaks. No logical changes
1 parent 6972f10 commit a577a2c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

java/client/src/org/openqa/selenium/remote/HttpCommandExecutor.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ public HttpCommandExecutor(ClientConfig config) {
8181
*/
8282
public HttpCommandExecutor(
8383
Map<String, CommandInfo> additionalCommands,
84-
URL addressOfRemoteServer)
85-
{
84+
URL addressOfRemoteServer) {
8685
this(Require.nonNull("Additional commands", additionalCommands),
8786
Require.nonNull("Server URL", addressOfRemoteServer),
8887
getDefaultClientFactory());
@@ -91,8 +90,7 @@ public HttpCommandExecutor(
9190
public HttpCommandExecutor(
9291
Map<String, CommandInfo> additionalCommands,
9392
URL addressOfRemoteServer,
94-
HttpClient.Factory httpClientFactory)
95-
{
93+
HttpClient.Factory httpClientFactory) {
9694
this(additionalCommands,
9795
ClientConfig.defaultConfig()
9896
.baseUrl(Require.nonNull("Server URL", addressOfRemoteServer)),
@@ -102,8 +100,7 @@ public HttpCommandExecutor(
102100
public HttpCommandExecutor(
103101
Map<String, CommandInfo> additionalCommands,
104102
ClientConfig config,
105-
HttpClient.Factory httpClientFactory)
106-
{
103+
HttpClient.Factory httpClientFactory) {
107104
remoteServer = Require.nonNull("HTTP client configuration", config).baseUrl();
108105
this.additionalCommands = Require.nonNull("Additional commands", additionalCommands);
109106
this.httpClientFactory = Require.nonNull("HTTP client factory", httpClientFactory);

0 commit comments

Comments
 (0)