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

Commit 88c07b66 authored by Riddle Hsu's avatar Riddle Hsu Committed by Automerger Merge Worker
Browse files

Merge "Fix NPE from startNewTransition" into tm-qpr-dev am: 2a23c2e3 am: e467fe5b

parents 84016639 e467fe5b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -221,7 +221,8 @@ class Transition implements BLASTSyncEngine.TransactionReadyListener {
    }

    @Nullable
    static Transition fromBinder(@NonNull IBinder token) {
    static Transition fromBinder(@Nullable IBinder token) {
        if (token == null) return null;
        try {
            return ((Token) token).mTransition.get();
        } catch (ClassCastException e) {