Skip to content

Commit a56f32d

Browse files
committed
Using correct method in default send.
1 parent 700e529 commit a56f32d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public void disconnectSession() {
8686
}
8787

8888
public <X> X send(Command<X> command) {
89-
return sendWithTimeout(command, this.timeout);
89+
return send(command, this.timeout);
9090
}
9191

9292
public <X> X send(Command<X> command, Duration timeout) {

0 commit comments

Comments
 (0)