diff options
Diffstat (limited to 'core/java/android/app/IntentService.java')
| -rw-r--r-- | core/java/android/app/IntentService.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/app/IntentService.java b/core/java/android/app/IntentService.java index 95ec24cdb9c5..11c747f5db17 100644 --- a/core/java/android/app/IntentService.java +++ b/core/java/android/app/IntentService.java @@ -16,6 +16,7 @@ package android.app; +import android.annotation.UnsupportedAppUsage; import android.annotation.WorkerThread; import android.annotation.Nullable; import android.content.Intent; @@ -62,6 +63,7 @@ import android.os.Message; */ public abstract class IntentService extends Service { private volatile Looper mServiceLooper; + @UnsupportedAppUsage private volatile ServiceHandler mServiceHandler; private String mName; private boolean mRedelivery; |
