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

Commit d7e766de authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add missing nullcheck to debug code in Transitions.startTransition" into main

parents dd03a127 cb399230
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1296,7 +1296,8 @@ public class Transitions implements RemoteCallable<Transitions>,
                + "type=%s wct=%s handler=%s", transitTypeToString(type), wct, handler);
        if (DEBUG_START_TRANSITION) {
            Log.d(TAG, "startTransition: type=" + transitTypeToString(type)
                    + " wct=" + wct + " handler=" + handler.getClass().getName(), new Throwable());
                    + " wct=" + wct + " handler="
                    + (handler != null ? handler.getClass().getName() : null), new Throwable());
        }
        final ActiveTransition active =
                new ActiveTransition(mOrganizer.startNewTransition(type, wct));