Skip to content

Commit 6d814cc

Browse files
committed
[java] Removing deprecated createPointerDown and createPointerUp methods
1 parent 8fc2f05 commit 6d814cc

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

java/src/org/openqa/selenium/interactions/PointerInput.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,6 @@ public Interaction createPointerDown(int button) {
8989
return new PointerPress(this, PointerPress.Direction.DOWN, button);
9090
}
9191

92-
/**
93-
* @deprecated always use the method with the button
94-
*/
95-
@Deprecated
96-
public Interaction createPointerDown(PointerEventProperties eventProperties) {
97-
return createPointerDown(0, eventProperties);
98-
}
99-
10092
public Interaction createPointerDown(int button, PointerEventProperties eventProperties) {
10193
return new PointerPress(this, PointerPress.Direction.DOWN, button, eventProperties);
10294
}
@@ -105,14 +97,6 @@ public Interaction createPointerUp(int button) {
10597
return new PointerPress(this, PointerPress.Direction.UP, button);
10698
}
10799

108-
/**
109-
* @deprecated always use the method with the button
110-
*/
111-
@Deprecated
112-
public Interaction createPointerUp(PointerEventProperties eventProperties) {
113-
return createPointerUp(0, eventProperties);
114-
}
115-
116100
public Interaction createPointerUp(int button, PointerEventProperties eventProperties) {
117101
return new PointerPress(this, PointerPress.Direction.UP, button, eventProperties);
118102
}

0 commit comments

Comments
 (0)