diff options
author | Paul Duffin <paulduffin@google.com> | 2017-02-08 18:30:17 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-02-08 18:30:17 +0000 |
commit | 9250814fd2df286a25450fea1b493e77d152ae92 (patch) | |
tree | 91e8385148fcf22286d7bce0bca9dc9c99deaecd /cmds/uiautomator | |
parent | e9799155c9596e7ec634709c5854aa53a8355f78 (diff) | |
parent | 9e99b9ee45ebf0fb0d8e617f8a12c28b890e2ef9 (diff) |
Merge "Replace com.android.internal.util.Predicate with java.util.function.Predicate" am: 78a20be77a
am: 9e99b9ee45
Change-Id: I289950cff0cdc6b5ad301936c7b55eadee5fd0f8
Diffstat (limited to 'cmds/uiautomator')
-rw-r--r-- | cmds/uiautomator/library/core-src/com/android/uiautomator/core/InteractionController.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmds/uiautomator/library/core-src/com/android/uiautomator/core/InteractionController.java b/cmds/uiautomator/library/core-src/com/android/uiautomator/core/InteractionController.java index 73e46f1775c2..28a5646abb33 100644 --- a/cmds/uiautomator/library/core-src/com/android/uiautomator/core/InteractionController.java +++ b/cmds/uiautomator/library/core-src/com/android/uiautomator/core/InteractionController.java @@ -32,8 +32,6 @@ import android.view.MotionEvent.PointerCoords; import android.view.MotionEvent.PointerProperties; import android.view.accessibility.AccessibilityEvent; -import com.android.internal.util.Predicate; - import java.util.ArrayList; import java.util.List; import java.util.concurrent.TimeoutException; @@ -261,7 +259,7 @@ class InteractionController { } /** - * Returns a Runnable for use in {@link #runAndWaitForEvents(Runnable, Predicate, long) to + * Returns a Runnable for use in {@link #runAndWaitForEvents(Runnable, AccessibilityEventFilter, long) to * perform a click. * * @param x coordinate |