Skip to content

Commit b83b090

Browse files
check style issues were fixed
1 parent 5996661 commit b83b090

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/io/appium/java_client/remote/AppiumCommandExecutor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public AppiumCommandExecutor(Map<String, CommandInfo> additionalCommands, Driver
5858
HttpClient.Factory httpClientFactory) {
5959
this(additionalCommands, checkNotNull(service), null, httpClientFactory);
6060
}
61+
6162
public AppiumCommandExecutor(Map<String, CommandInfo> additionalCommands,
6263
URL addressOfRemoteServer, HttpClient.Factory httpClientFactory) {
6364
this(additionalCommands, null, checkNotNull(addressOfRemoteServer), httpClientFactory);
@@ -97,7 +98,8 @@ public AppiumCommandExecutor(Map<String, CommandInfo> additionalCommands,
9798
}
9899

99100
return new WebDriverException("The appium server has accidentally died!", rootCause);
100-
}).orElseGet((Supplier<WebDriverException>) () -> new WebDriverException(rootCause.getMessage(), rootCause));
101+
}).orElseGet((Supplier<WebDriverException>) () ->
102+
new WebDriverException(rootCause.getMessage(), rootCause));
101103
}
102104
throwIfUnchecked(t);
103105
throw new WebDriverException(t);

0 commit comments

Comments
 (0)