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

Commit 578ecf84 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix faulty log statement" into sc-dev am: 792a5985

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13462528

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I9c9bb92d18044ae6918f8dfc21bd786be9a6ea3d
parents f69986fa 792a5985
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2459,7 +2459,7 @@ public abstract class ConnectionService extends Service {
    }

    private void onCallFilteringCompleted(String callId, boolean isBlocked, boolean isInContacts) {
        Log.i(this, "onCallFilteringCompleted(%s, %b, %b)", isBlocked, isInContacts);
        Log.i(this, "onCallFilteringCompleted(%b, %b)", isBlocked, isInContacts);
        Connection connection = findConnectionForAction(callId, "onCallFilteringCompleted");
        if (connection != null) {
            connection.onCallFilteringCompleted(isBlocked, isInContacts);