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

This commit is contained in:
TreeHugger Robot
2017-08-31 19:43:01 +00:00
committed by Android (Google) Code Review

View File

@@ -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)