Loading src/com/android/dialer/calllog/CallLogNotificationsService.java +3 −6 Original line number Diff line number Diff line Loading @@ -66,12 +66,6 @@ public class CallLogNotificationsService extends IntentService { super("CallLogNotificationsService"); } @Override public void onCreate() { super.onCreate(); mVoicemailQueryHandler = new VoicemailQueryHandler(this, getContentResolver()); } @Override protected void onHandleIntent(Intent intent) { if (intent == null) { Loading @@ -84,6 +78,9 @@ public class CallLogNotificationsService extends IntentService { } if (ACTION_MARK_NEW_VOICEMAILS_AS_OLD.equals(intent.getAction())) { if (mVoicemailQueryHandler == null) { mVoicemailQueryHandler = new VoicemailQueryHandler(this, getContentResolver()); } mVoicemailQueryHandler.markNewVoicemailsAsOld(); } else if (ACTION_UPDATE_NOTIFICATIONS.equals(intent.getAction())) { Uri voicemailUri = (Uri) intent.getParcelableExtra(EXTRA_NEW_VOICEMAIL_URI); Loading Loading
src/com/android/dialer/calllog/CallLogNotificationsService.java +3 −6 Original line number Diff line number Diff line Loading @@ -66,12 +66,6 @@ public class CallLogNotificationsService extends IntentService { super("CallLogNotificationsService"); } @Override public void onCreate() { super.onCreate(); mVoicemailQueryHandler = new VoicemailQueryHandler(this, getContentResolver()); } @Override protected void onHandleIntent(Intent intent) { if (intent == null) { Loading @@ -84,6 +78,9 @@ public class CallLogNotificationsService extends IntentService { } if (ACTION_MARK_NEW_VOICEMAILS_AS_OLD.equals(intent.getAction())) { if (mVoicemailQueryHandler == null) { mVoicemailQueryHandler = new VoicemailQueryHandler(this, getContentResolver()); } mVoicemailQueryHandler.markNewVoicemailsAsOld(); } else if (ACTION_UPDATE_NOTIFICATIONS.equals(intent.getAction())) { Uri voicemailUri = (Uri) intent.getParcelableExtra(EXTRA_NEW_VOICEMAIL_URI); Loading