Skip to content
Snippets Groups Projects
Commit e34d630f authored by Haoran Zhang's avatar Haoran Zhang Committed by Android (Google) Code Review
Browse files

Merge "[Assist Structure] Make assist structure dump easier to read" into main

parents 8b86c4f5 22d8445b
No related branches found
No related tags found
No related merge requests found
......@@ -2655,13 +2655,12 @@ public class AssistStructure implements Parcelable {
);
}
GetCredentialRequest getCredentialRequest = node.getPendingCredentialRequest();
if (getCredentialRequest == null) {
Log.i(TAG, prefix + " No Credential Manager Request");
} else {
Log.i(TAG, prefix + " GetCredentialRequest: no. of options= "
+ getCredentialRequest.getCredentialOptions().size()
);
}
Log.i(TAG, prefix + " Credential Manager info:"
+ " hasCredentialManagerRequest=" + (getCredentialRequest != null)
+ (getCredentialRequest != null
? ", sizeOfOptions=" + getCredentialRequest.getCredentialOptions().size()
: "")
);
final int NCHILDREN = node.getChildCount();
if (NCHILDREN > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment