summaryrefslogtreecommitdiff
path: root/src/com/android/dialer/calllog/CallLogNotificationsHelper.java
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-09-12 09:33:50 -0700
committerTyler Gunn <tgunn@google.com>2014-09-12 20:20:13 -0700
commit9dc924c8bcc0bc8d996452e9ce3215b5f064962e (patch)
treeb09bda8ee8968fbffce78d391391c591ebc1aa5f /src/com/android/dialer/calllog/CallLogNotificationsHelper.java
parentbd97cd041453dc8545deaa7ad17e8bd99d53e0de (diff)
Renaming Telecomm to Telecom.
- Changing package from android.telecomm to android.telecom - Changing package from com.android.telecomm to com.android.server.telecomm. - Renaming TelecommManager to TelecomManager. Bug: 17364651 Change-Id: I44d6d6546cac53232e4e2be0ebe0391d02411309
Diffstat (limited to 'src/com/android/dialer/calllog/CallLogNotificationsHelper.java')
-rw-r--r--src/com/android/dialer/calllog/CallLogNotificationsHelper.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/android/dialer/calllog/CallLogNotificationsHelper.java b/src/com/android/dialer/calllog/CallLogNotificationsHelper.java
index db37d341b..f6ee8966b 100644
--- a/src/com/android/dialer/calllog/CallLogNotificationsHelper.java
+++ b/src/com/android/dialer/calllog/CallLogNotificationsHelper.java
@@ -18,7 +18,7 @@ package com.android.dialer.calllog;
import android.content.Context;
import android.content.Intent;
-import android.telecomm.TelecommManager;
+import android.telecom.TelecomManager;
/**
* Helper class operating on call log notifications.
@@ -26,9 +26,9 @@ import android.telecomm.TelecommManager;
public class CallLogNotificationsHelper {
/** Removes the missed call notifications. */
public static void removeMissedCallNotifications(Context context) {
- TelecommManager telecommManager = (TelecommManager)
- context.getSystemService(Context.TELECOMM_SERVICE);
- telecommManager.cancelMissedCallsNotification();
+ TelecomManager telecomManager = (TelecomManager)
+ context.getSystemService(Context.TELECOM_SERVICE);
+ telecomManager.cancelMissedCallsNotification();
}
/** Update the voice mail notifications. */