Skip to content

Commit 85dd3b4

Browse files
authored
[java] Allow null input in FluentWait (#13558)
1 parent c2a660b commit 85dd3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/support/ui/FluentWait.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public FluentWait(T input) {
8989
* @param sleeper Used to put the thread to sleep between evaluation loops.
9090
*/
9191
public FluentWait(T input, java.time.Clock clock, Sleeper sleeper) {
92-
this.input = Require.nonNull("Input", input);
92+
this.input = input;
9393
this.clock = Require.nonNull("Clock", clock);
9494
this.sleeper = Require.nonNull("Sleeper", sleeper);
9595
}

0 commit comments

Comments
 (0)