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

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

Merge "Put config dump in the right place."

parents 02d95e08 2ffb7184
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -809,6 +809,12 @@ public final class FlexibilityController extends StateController {
        return mFcConfig;
    }

    @Override
    @GuardedBy("mLock")
    public void dumpConstants(IndentingPrintWriter pw) {
        mFcConfig.dump(pw);
    }

    @Override
    @GuardedBy("mLock")
    public void dumpControllerStateLocked(IndentingPrintWriter pw, Predicate<JobStatus> predicate) {
@@ -821,7 +827,5 @@ public final class FlexibilityController extends StateController {
        mFlexibilityTracker.dump(pw, predicate);
        pw.println();
        mFlexibilityAlarmQueue.dump(pw);
        pw.println();
        mFcConfig.dump(pw);
    }
}