Skip to content

Commit fb4a79c

Browse files
committed
code review: remove duplicate semicolon
1 parent 425fab0 commit fb4a79c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/devtools/DevToolsProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public DevTools getDevTools() {
6565
this.devTools =
6666
SeleniumCdpConnection.create(caps)
6767
.map(conn -> new DevTools(info::getDomains, conn))
68-
.orElseThrow(() -> new DevToolsException("Unable to create DevTools connection"));;
68+
.orElseThrow(() -> new DevToolsException("Unable to create DevTools connection"));
6969
}
7070
}
7171
}

0 commit comments

Comments
 (0)