Merge "Fixed FillResponse.toString() to display list of datasets." into oc-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
ac2a765a18
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user