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

Commit e6df1d51 authored by Kweku Adams's avatar Kweku Adams Committed by Automerger Merge Worker
Browse files

Merge "Fix dump calculation." into udc-dev am: a7022b25

parents 9b6f6d62 a7022b25
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();