From 9dc924c8bcc0bc8d996452e9ce3215b5f064962e Mon Sep 17 00:00:00 2001 From: Tyler Gunn Date: Fri, 12 Sep 2014 09:33:50 -0700 Subject: 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 --- src/com/android/dialer/calllog/CallLogNotificationsHelper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/com/android/dialer/calllog/CallLogNotificationsHelper.java') 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. */ -- cgit v1.2.3