Skip to content

Commit

Permalink
Remove unthrown exception
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Mar 30, 2020
1 parent fcceffe commit d1b63a3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import org.openqa.selenium.remote.http.ClientConfig;
import org.openqa.selenium.remote.http.HttpClient;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Arrays;
Expand Down Expand Up @@ -101,8 +100,7 @@ private boolean isEnabled(HttpClient.Factory clientFactory) {
return new Docker(client).isSupported();
}

public void configure(Tracer tracer, HttpClient.Factory clientFactory, LocalNode.Builder node)
throws IOException {
public void configure(Tracer tracer, HttpClient.Factory clientFactory, LocalNode.Builder node) {
if (!isEnabled(clientFactory)) {
return;
}
Expand Down

0 comments on commit d1b63a3

Please sign in to comment.