summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Joe Onorato <joeo@google.com> 2011-01-16 14:45:48 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2011-01-16 14:45:48 -0800
commitc45389fd3791badf097666f10a74ae736b06d438 (patch)
treef12f2af2b4ac4879149074c270008545ffa90553
parent85562dde32d1c78cb6084ad96f409721edbbec51 (diff)
parent9bb85ab3af3f8e4efa9c8c22f907680cd0108bcb (diff)
Merge "fix the build... sorry... bad docs..." into honeycomb
-rw-r--r--core/java/android/os/AsyncTask.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java
index adc0a8b322b9..5a35eb050482 100644
--- a/core/java/android/os/AsyncTask.java
+++ b/core/java/android/os/AsyncTask.java
@@ -470,7 +470,7 @@ public abstract class AsyncTask<Params, Progress, Result> {
* Executes the task with the specified parameters. The task returns
* itself (this) so that the caller can keep a reference to it. The tasks
* started by all invocations of this method in a given process are run
- * sequentially. Call the {@link #execute(Executor,Params...) execute(Executor,Params...)}
+ * sequentially. Call the executeOnExecutor(Executor,Params...)
* with a custom {@link Executor} to have finer grained control over how the
* tasks are run.
*