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

Commit a7022b25 authored by Kweku Adams's avatar Kweku Adams Committed by Android (Google) Code Review
Browse files

Merge "Fix dump calculation." into udc-dev

parents 481b4685 c7af0eff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2124,9 +2124,9 @@ public final class JobStatus {
            sb.append(" READY");
        } else {
            sb.append(" satisfied:0x").append(Integer.toHexString(satisfiedConstraints));
            final int requiredConstraints = mRequiredConstraintsOfInterest | IMPLICIT_CONSTRAINTS;
            sb.append(" unsatisfied:0x").append(Integer.toHexString(
                    (satisfiedConstraints & (mRequiredConstraintsOfInterest | IMPLICIT_CONSTRAINTS))
                            ^ mRequiredConstraintsOfInterest));
                    (satisfiedConstraints & requiredConstraints) ^ requiredConstraints));
        }
        sb.append("}");
        return sb.toString();