Fixed FillResponse.toString() to display list of datasets.
Test: cts-tradefed run commandAndExit cts-dev -m CtsAutoFillServiceTestCases Bug: 63392631 Change-Id: I893f468ee20d069b16f00d38f5fa18ed60826d03
This commit is contained in:
@@ -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