Skip to content

Commit c8d451e

Browse files
chore: Remove unused entities (#1572)
* chore: Remove unused entities * Tune deprecation notices * Add summary
1 parent bd66144 commit c8d451e

File tree

5 files changed

+30
-123
lines changed

5 files changed

+30
-123
lines changed

src/main/java/io/appium/java_client/MultiTouchAction.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,17 @@
4141
* "execution group", so these can be used to sync up complex actions.
4242
* Calling perform() sends the action command to the Mobile Driver. Otherwise, more and
4343
* more actions can be chained.
44+
*
45+
* @deprecated Touch actions are deprecated.
46+
* Please use W3C Actions instead or the corresponding
47+
* extension methods for the driver (if available).
48+
* Check
49+
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
50+
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
51+
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
52+
* for more details.
4453
*/
54+
@Deprecated
4555
public class MultiTouchAction implements PerformsActions<MultiTouchAction> {
4656

4757
private ImmutableList.Builder<TouchAction> actions;

src/main/java/io/appium/java_client/android/AndroidTouchAction.java

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@
2121

2222

2323
/**
24-
* Touch actions are deprecated.
25-
* Please use W3C Actions instead or the corresponding
26-
* extension methods for the driver (if available).
27-
* Check
28-
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
29-
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
30-
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
31-
* for more details.
24+
* Android-specific touch action.
25+
*
26+
* @deprecated Touch actions are deprecated.
27+
* Please use W3C Actions instead or the corresponding
28+
* extension methods for the driver (if available).
29+
* Check
30+
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
31+
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
32+
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
33+
* for more details.
3234
*/
3335
@Deprecated
3436
public class AndroidTouchAction extends TouchAction<AndroidTouchAction> {

src/main/java/io/appium/java_client/ios/IOSTouchAction.java

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,16 @@
2323
import io.appium.java_client.touch.offset.PointOption;
2424

2525
/**
26-
* Touch actions are deprecated.
27-
* Please use W3C Actions instead or the corresponding
28-
* extension methods for the driver (if available).
29-
* Check
30-
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
31-
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
32-
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
33-
* for more details.
26+
* iOS-specific touch action.
27+
*
28+
* @deprecated Touch actions are deprecated.
29+
* Please use W3C Actions instead or the corresponding
30+
* extension methods for the driver (if available).
31+
* Check
32+
* - https://www.youtube.com/watch?v=oAJ7jwMNFVU
33+
* - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
34+
* - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
35+
* for more details.
3436
*/
3537
@Deprecated
3638
public class IOSTouchAction extends TouchAction<IOSTouchAction> {

src/main/java/io/appium/java_client/windows/PressesKeyCode.java

Lines changed: 0 additions & 66 deletions
This file was deleted.

src/main/java/io/appium/java_client/windows/WindowsKeyCode.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)