Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9bc2acd4 authored by Santos Cordon's avatar Santos Cordon Committed by Android (Google) Code Review
Browse files

Merge "Some string cleanup."

parents 83c0fdd1 3319c16f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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;