diff options
| author | Dianne Hackborn <hackbod@google.com> | 2010-12-20 12:10:01 -0800 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2010-12-20 14:10:31 -0800 |
| commit | a2ea747faaf5fcd437afbaaf4085cfc29e7c16b8 (patch) | |
| tree | 3e5de42a2c88daf93578136684d265d0e3c3f54d /core/java/android/os/AsyncTask.java | |
| parent | 2a1cc5ac30efc05880a12a2114c09364fc38e032 (diff) | |
More cleanup of Loader APIs.
- Remove old method names.
- Introduce onXxx() hooks to Loader.
- Improve debugging.
Change-Id: I3fba072a05c7023aa7d2c3eb4e126feb514ab6d8
Diffstat (limited to 'core/java/android/os/AsyncTask.java')
| -rw-r--r-- | core/java/android/os/AsyncTask.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java index f0309d68e656..9d5d742220f9 100644 --- a/core/java/android/os/AsyncTask.java +++ b/core/java/android/os/AsyncTask.java @@ -281,7 +281,7 @@ public abstract class AsyncTask<Params, Progress, Result> { /** * Runs on the UI thread after {@link #doInBackground}. The * specified result is the value returned by {@link #doInBackground} - * or null if the task was cancelled or an exception occured. + * or null if the task was cancelled or an exception occurred. * * @param result The result of the operation computed by {@link #doInBackground}. * |
