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

Commit d188da9e authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Merge "Fixed FillResponse.toString() to display list of datasets." into oc-mr1-dev am: ac2a765a

am: aad0ef1f

Change-Id: I2b1869ec2eb3f25e9af9b89bd1a4d475b474580f
parents 44bc284d aad0ef1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ public final class FillResponse implements Parcelable {
        // TODO: create a dump() method instead
        return new StringBuilder(
                "FillResponse : [mRequestId=" + mRequestId)
                .append(", datasets=").append(mDatasets)
                .append(", datasets=").append(mDatasets == null ? "N/A" : mDatasets.getList())
                .append(", saveInfo=").append(mSaveInfo)
                .append(", clientState=").append(mClientState != null)
                .append(", hasPresentation=").append(mPresentation != null)