From 9bb85ab3af3f8e4efa9c8c22f907680cd0108bcb Mon Sep 17 00:00:00 2001 From: Joe Onorato Date: Sun, 16 Jan 2011 14:30:55 -0800 Subject: [PATCH] fix the build... sorry... bad docs... Change-Id: I4b543f306d58ec95693c8e3515dffcb7dd55dc29 --- core/java/android/os/AsyncTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/os/AsyncTask.java b/core/java/android/os/AsyncTask.java index adc0a8b322b9e..5a35eb0504827 100644 --- a/core/java/android/os/AsyncTask.java +++ b/core/java/android/os/AsyncTask.java @@ -470,7 +470,7 @@ public abstract class AsyncTask { * 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. *