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

Commit aad0ef1f 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

Change-Id: Ic84ca582b444c145609d79a04232926da6deb118
parents c6af997d ac2a765a
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)