From 32b80b500f553c33250b0b3a7948d3339c13a8d5 Mon Sep 17 00:00:00 2001 From: Christopher Tate Date: Tue, 19 Jan 2021 14:24:10 -0800 Subject: [PATCH] Correct IntentService docs Extends Service, not a base class of it. Bug: 147564984 Test: build reference docs (m offline-sdk-docs) Change-Id: Idf0a52d59062be36827e27eea076c744152a676c --- core/java/android/app/IntentService.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/java/android/app/IntentService.java b/core/java/android/app/IntentService.java index 71b28fba60199..856c13c60b35b 100644 --- a/core/java/android/app/IntentService.java +++ b/core/java/android/app/IntentService.java @@ -27,8 +27,9 @@ import android.os.Looper; import android.os.Message; /** - * IntentService is a base class for {@link Service}s that handle asynchronous - * requests (expressed as {@link Intent}s) on demand. Clients send requests + * IntentService is an extension of the {@link Service} component class that + * handles asynchronous requests (expressed as {@link Intent}s) on demand. + * Clients send requests * through {@link android.content.Context#startService(Intent)} calls; the * service is started as needed, handles each Intent in turn using a worker * thread, and stops itself when it runs out of work.