Client feedback: Fix javadoc mistake

Bug: 226053830
Test: make sdk
Change-Id: I97665d80f49a5d7adce9905623f659400f735f88
This commit is contained in:
TYM Tsai
2022-03-23 01:00:33 +08:00
parent 3c5b9738c7
commit 613a8733c6
2 changed files with 4 additions and 6 deletions

View File

@@ -876,7 +876,7 @@ public final class Dataset implements Parcelable {
* if (filter != null) {
* fieldBuilder.setFilter(filter);
* }
* Presentations.Builder presentationsBuilder = new Presentations.Builder(id);
* Presentations.Builder presentationsBuilder = new Presentations.Builder();
* if (presentation != null) {
* presentationsBuilder.setMenuPresentation(presentation);
* }

View File

@@ -18,7 +18,6 @@ package android.service.autofill;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.view.autofill.AutofillId;
import android.view.autofill.AutofillValue;
import com.android.internal.util.DataClass;
@@ -26,10 +25,9 @@ import com.android.internal.util.DataClass;
import java.util.regex.Pattern;
/**
* This class is used to set all information of a field. Such as the
* {@link AutofillId} of the field, the {@link AutofillValue} to be autofilled,
* a <a href="#Filtering">explicit filter</a>, and presentations to be visualized,
* etc.
* This class is used to set all information of a field. Such as the {@link AutofillValue}
* to be autofilled, a <a href="#Filtering">explicit filter</a>, and presentations to be
* visualized, etc.
*/
public final class Field {