Skip to content

Commit aafdb81

Browse files
committed
Renaming method to send.
1 parent b96a332 commit aafdb81

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
@@ -89,7 +89,7 @@ public <X> X send(Command<X> command) {
8989
return sendWithTimeout(command, this.timeout);
9090
}
9191

92-
public <X> X sendWithTimeout(Command<X> command, Duration timeout) {
92+
public <X> X send(Command<X> command, Duration timeout) {
9393
Require.nonNull("Command to send", command);
9494
return connection.sendAndWait(cdpSession, command, timeout);
9595
}

0 commit comments

Comments
 (0)