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

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

Merge "Transition: dump mFlags as hex string" into udc-dev

parents 739b95b7 65351440
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1609,7 +1609,7 @@ class Transition implements BLASTSyncEngine.TransactionReadyListener {
        sb.append(Integer.toHexString(System.identityHashCode(this)));
        sb.append(" id=" + mSyncId);
        sb.append(" type=" + transitTypeToString(mType));
        sb.append(" flags=" + mFlags);
        sb.append(" flags=0x" + Integer.toHexString(mFlags));
        sb.append('}');
        return sb.toString();
    }