Skip to content

Commit 3e3f9ec

Browse files
committed
java: Adding final modifier for a constant
1 parent 9cb8677 commit 3e3f9ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
*/
6868
public class FluentWait<T> implements Wait<T> {
6969

70-
public static Duration FIVE_HUNDRED_MILLIS = new Duration(500, MILLISECONDS);
70+
public static final Duration FIVE_HUNDRED_MILLIS = new Duration(500, MILLISECONDS);
7171

7272
private final T input;
7373
private final Clock clock;

0 commit comments

Comments
 (0)