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

Commit c7f358b8 authored by chao.bi's avatar chao.bi Committed by android-build-merger
Browse files

Merge "Fix bug in CallManager unregisterForPhoneStates()"

am: ece22ce7

* commit 'ece22ce7':
  Fix bug in CallManager unregisterForPhoneStates()

Change-Id: I3d553bf32f45aaf4381c6d1665690e4c86c4cbb3
parents 78232be3 ece22ce7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -677,7 +677,7 @@ public final class CallManager {
    private void unregisterForPhoneStates(Phone phone) {
        // Make sure that we clean up our map of handlers to Phones.
        CallManagerHandler handler = mHandlerMap.get(phone);
        if (handler != null) {
        if (handler == null) {
            Rlog.e(LOG_TAG, "Could not find Phone handler for unregistration");
            return;
        }