summaryrefslogtreecommitdiff
path: root/core/java/android/content/AsyncTaskLoader.java
diff options
context:
space:
mode:
authorJeff Hamilton <jham@android.com>2010-05-18 11:11:57 -0500
committerJeff Hamilton <jham@android.com>2010-05-18 11:11:57 -0500
commit7860b10d1687b7102a14f321d327620bb4191fa6 (patch)
treee278b359ae51349748918a7c474fbb534e00089a /core/java/android/content/AsyncTaskLoader.java
parente5c50c621193e3c2f9e31cfc7174c160d838dec2 (diff)
Another try at fixing the docs build.
Change-Id: Ief60f4e71efee1d3bb4ee36e2f2a2fcaeb996284
Diffstat (limited to 'core/java/android/content/AsyncTaskLoader.java')
-rw-r--r--core/java/android/content/AsyncTaskLoader.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/AsyncTaskLoader.java b/core/java/android/content/AsyncTaskLoader.java
index f0f8b03407f0..f43921faa673 100644
--- a/core/java/android/content/AsyncTaskLoader.java
+++ b/core/java/android/content/AsyncTaskLoader.java
@@ -78,8 +78,8 @@ public abstract class AsyncTaskLoader<D> extends Loader<D> {
/**
* Called on a worker thread to perform the actual load. Implementations should not deliver the
* results directly, but should return them from this method, which will eventually end up
- * calling {@link #deliverResult(Object)} on the UI thread. If implementations need to process
- * the results on the UI thread they may override {@link #deliverResult(Object)} and do so
+ * calling deliverResult on the UI thread. If implementations need to process
+ * the results on the UI thread they may override deliverResult and do so
* there.
*
* @return the result of the load