summaryrefslogtreecommitdiff
path: root/provider_src/com/android/email/EmailIntentService.java
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2019-06-28 10:03:36 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2019-06-28 10:03:36 +0000
commit0d80873160283b6ab6ed3278e252e84d98487d99 (patch)
treec2ebc59cd52f241eab06152d62db4f5da820bb37 /provider_src/com/android/email/EmailIntentService.java
parentaf3a1fc9f944c4abce88bc4271e9140276a8442e (diff)
parent883f025edc30febb9e439fd1430758f5eab4cf2f (diff)
downloadEmail-0d80873160283b6ab6ed3278e252e84d98487d99.tar.gz
Merge "Revert "AOSP/Email - Changes for code to work with UnifiedEmail's version bump to the targetSdkVersion to 28 (maximum version). Used JobIntentservice API calls to replace context.startService for EmailBroadcastProcessorService."" into qt-dev
Diffstat (limited to 'provider_src/com/android/email/EmailIntentService.java')
-rw-r--r--provider_src/com/android/email/EmailIntentService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/provider_src/com/android/email/EmailIntentService.java b/provider_src/com/android/email/EmailIntentService.java
index 5924c90ce..0c6d76178 100644
--- a/provider_src/com/android/email/EmailIntentService.java
+++ b/provider_src/com/android/email/EmailIntentService.java
@@ -29,12 +29,12 @@ public class EmailIntentService extends MailIntentService {
private static final String LOG_TAG = LogTag.getLogTag();
public EmailIntentService() {
- super();
+ super("EmailIntentService");
}
@Override
- protected void onHandleWork(final Intent intent) {
- super.onHandleWork(intent);
+ protected void onHandleIntent(final Intent intent) {
+ super.onHandleIntent(intent);
if (UIProvider.ACTION_UPDATE_NOTIFICATION.equals(intent.getAction())) {
final NotificationController nc =