diff options
| author | 2023-07-20 02:17:56 +0000 | |
|---|---|---|
| committer | 2023-07-20 02:17:56 +0000 | |
| commit | 810352d87a1f4fae9edc42d57d02a1542a9803fb (patch) | |
| tree | 0cc7e826c005649d3fd718910e762f2a4248fbcc | |
| parent | a90e086ce020acf7187cdcf801658ec5f8bf34ae (diff) | |
| parent | 7c257c8ec5d0e0f7b4adbf7e8ac7cecdc5e2dcba (diff) | |
Merge "Fix at-clause typo for Handler." into main am: 9f086e5d7a am: 1837a51fd1 am: a45f3babbf am: 7c257c8ec5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2666076
Change-Id: I013688a896e4a029aed52742c537af62bc2e7840
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/android/os/Handler.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/os/Handler.java b/core/java/android/os/Handler.java index ceaf337b2122..2584f047295d 100644 --- a/core/java/android/os/Handler.java +++ b/core/java/android/os/Handler.java @@ -119,7 +119,7 @@ public class Handler { * crashes (if a handler is sometimes created on a thread without a Looper active), or race * conditions, where the thread a handler is associated with is not what the author * anticipated. Instead, use an {@link java.util.concurrent.Executor} or specify the Looper - * explicitly, using {@link Looper#getMainLooper}, {link android.view.View#getHandler}, or + * explicitly, using {@link Looper#getMainLooper}, {@link android.view.View#getHandler}, or * similar. If the implicit thread local behavior is required for compatibility, use * {@code new Handler(Looper.myLooper())} to make it clear to readers. * @@ -144,7 +144,7 @@ public class Handler { * crashes (if a handler is sometimes created on a thread without a Looper active), or race * conditions, where the thread a handler is associated with is not what the author * anticipated. Instead, use an {@link java.util.concurrent.Executor} or specify the Looper - * explicitly, using {@link Looper#getMainLooper}, {link android.view.View#getHandler}, or + * explicitly, using {@link Looper#getMainLooper}, {@link android.view.View#getHandler}, or * similar. If the implicit thread local behavior is required for compatibility, use * {@code new Handler(Looper.myLooper(), callback)} to make it clear to readers. */ |