Skip to content

Commit 0908d52

Browse files
committed
Reducing the visibility of a deprecated class in the htmlunit driver.
1 parent d8816d8 commit 0908d52

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

java/client/src/org/openqa/selenium/htmlunit/KeyboardModifiersState.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,8 @@
2020

2121
/**
2222
* Holds the state of the modifier keys (Shift, ctrl, alt) for HtmlUnit.
23-
*
24-
* @deprecated This class will soon be marked private
2523
*/
26-
@Deprecated
27-
public class KeyboardModifiersState {
24+
class KeyboardModifiersState {
2825
private boolean shiftPressed = false;
2926
private boolean ctrlPressed = false;
3027
private boolean altPressed = false;

0 commit comments

Comments
 (0)