Skip to content

Commit 84530ea

Browse files
iampopovichsandeepsuryaprasad
authored andcommitted
[java] rawtypes javac warning fix for AbstractDriverOptions (SeleniumHQ#15048)
rawtypes javac fixe for AbstractDriverOptions
1 parent 6920782 commit 84530ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/org/openqa/selenium/remote/AbstractDriverOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import org.openqa.selenium.UnexpectedAlertBehaviour;
4141
import org.openqa.selenium.internal.Require;
4242

43-
public abstract class AbstractDriverOptions<DO extends AbstractDriverOptions>
43+
public abstract class AbstractDriverOptions<DO extends AbstractDriverOptions<DO>>
4444
extends MutableCapabilities {
4545
public DO setBrowserVersion(String browserVersion) {
4646
setCapability(BROWSER_VERSION, Require.nonNull("Browser version", browserVersion));

0 commit comments

Comments
 (0)