summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jeff Hamilton <jham@android.com> 2010-05-18 09:14:36 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2010-05-18 09:14:36 -0700
commitf6e9a082a2d7d97bbe45fc7e38fb7ea2a62f39ac (patch)
tree5750d9ca884c94650f63a2558d3197b8a55570b5
parent5ddfac4239193b1fcb987bfebc7f3d06ecedff33 (diff)
parent7860b10d1687b7102a14f321d327620bb4191fa6 (diff)
Merge "Another try at fixing the docs build."
-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