summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/Service.java
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2012-08-06 17:48:37 -0700
committerScott Main <smain@google.com>2012-08-06 18:04:23 -0700
commit40eee61e25fb887f5267686f8a0a7c5bd9f95769 (patch)
tree8ba762d17f536f0914f9fe13311be8838ff44834 /core/java/android/app/Service.java
parentea8375617e0d9099dc156a12989277d320eab1ca (diff)
downloadframeworks_base-40eee61e25fb887f5267686f8a0a7c5bd9f95769.zip
frameworks_base-40eee61e25fb887f5267686f8a0a7c5bd9f95769.tar.gz
frameworks_base-40eee61e25fb887f5267686f8a0a7c5bd9f95769.tar.bz2
docs: fix broken links
and update sitemap text file Change-Id: I6982c3f029c46135ae856b8484d906c2882bad3a
Diffstat (limited to 'core/java/android/app/Service.java')
-rw-r--r--core/java/android/app/Service.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/Service.java b/core/java/android/app/Service.java
index cb43d4c..02cf3aa 100644
--- a/core/java/android/app/Service.java
+++ b/core/java/android/app/Service.java
@@ -142,7 +142,7 @@ import java.io.PrintWriter;
* to the service. The service will remain running as long as the connection
* is established (whether or not the client retains a reference on the
* service's IBinder). Usually the IBinder returned is for a complex
- * interface that has been <a href="{@docRoot}guide/developing/tools/aidl.html">written
+ * interface that has been <a href="{@docRoot}guide/components/aidl.html">written
* in aidl</a>.
*
* <p>A service can be both started and have connections bound to it. In such
@@ -473,7 +473,7 @@ public abstract class Service extends ContextWrapper implements ComponentCallbac
* Return the communication channel to the service. May return null if
* clients can not bind to the service. The returned
* {@link android.os.IBinder} is usually for a complex interface
- * that has been <a href="{@docRoot}guide/developing/tools/aidl.html">described using
+ * that has been <a href="{@docRoot}guide/components/aidl.html">described using
* aidl</a>.
*
* <p><em>Note that unlike other application components, calls on to the