Merge "Fixed annotation typo." into pi-dev

am: 74896e21a7

Change-Id: I6baeb8014228b9faba0be901935b6dd25e7cd9fd
This commit is contained in:
Felipe Leme
2018-03-29 22:56:05 +00:00
committed by android-build-merger

View File

@@ -424,7 +424,7 @@ public final class FillEventHistory implements Parcelable {
* @return map map whose key is the id of the manually-entered field, and value is the
* ids of the datasets that have that value but were not selected by the user.
*/
@Nullable public Map<AutofillId, Set<String>> getManuallyEnteredField() {
@NonNull public Map<AutofillId, Set<String>> getManuallyEnteredField() {
if (mManuallyFilledFieldIds == null || mManuallyFilledDatasetIds == null) {
return Collections.emptyMap();
}