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

Commit bad895ec authored by Jiaming Liu's avatar Jiaming Liu Committed by Android (Google) Code Review
Browse files

Merge "Add cancel_when_requester_not_on_top to device_state print-states output" into udc-dev

parents 29fd4cf2 3486ce4e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -139,7 +139,10 @@ public final class DeviceState {
    @Override
    public String toString() {
        return "DeviceState{" + "identifier=" + mIdentifier + ", name='" + mName + '\''
                + ", app_accessible=" + !hasFlag(FLAG_APP_INACCESSIBLE) + "}";
                + ", app_accessible=" + !hasFlag(FLAG_APP_INACCESSIBLE)
                + ", cancel_when_requester_not_on_top="
                + hasFlag(FLAG_CANCEL_WHEN_REQUESTER_NOT_ON_TOP)
                + "}";
    }

    @Override