Some string cleanup.

Change-Id: Icf8ec1cb162353e24d6982f36e94691ead722eac
This commit is contained in:
Santos Cordon
2014-07-10 12:18:03 -07:00
parent 7237965c0d
commit 3319c16f5a

View File

@@ -58,7 +58,7 @@ public final class PhoneManager {
try {
return service.handlePinMmi(dialString);
} catch (RemoteException e) {
Log.e(TAG, "Error calling ITelecommService()#handlePinMmi", e);
Log.e(TAG, "Error calling ITelecommService#handlePinMmi", e);
}
}
return false;
@@ -76,7 +76,7 @@ public final class PhoneManager {
try {
service.cancelMissedCallsNotification();
} catch (RemoteException e) {
Log.e(TAG, "Error calling ITelecommService()#cancelMissedCallNotification", e);
Log.e(TAG, "Error calling ITelecommService#cancelMissedCallsNotification", e);
}
}
}
@@ -97,7 +97,7 @@ public final class PhoneManager {
try {
service.showCallScreen(showDialpad);
} catch (RemoteException e) {
Log.e(TAG, "Error calling ITelecommService()#showCallScreen", e);
Log.e(TAG, "Error calling ITelecommService#showCallScreen", e);
}
}
}
@@ -114,7 +114,7 @@ public final class PhoneManager {
try {
return service.isInAPhoneCall();
} catch (RemoteException e) {
Log.e(TAG, "Error caling ITelecommService()#isInAPhoneCall", e);
Log.e(TAG, "Error caling ITelecommService#isInAPhoneCall", e);
}
}
return false;