diff options
| author | 2019-03-18 14:06:32 +0000 | |
|---|---|---|
| committer | 2019-03-18 14:06:32 +0000 | |
| commit | 37ec6b6ac7cd6a4163e3c3861de855896509e2ba (patch) | |
| tree | 88150b30bb9f63a22b7f3a91586ba1f0655aee04 | |
| parent | 4d0280709ab9a9d3156732626e25f4d6d19f4f82 (diff) | |
| parent | df4c244c8a9bb6f5dece161cde2479c5cbe88325 (diff) | |
Merge "Fix curly brackets in Notification.java"
| -rw-r--r-- | core/java/android/app/Notification.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index a8a34d2856e2..23f64b86aade 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1203,7 +1203,7 @@ public class Notification implements Parcelable /** * {@link #extras} key: whether the notification should be colorized as - * supplied to {@link Builder#setColorized(boolean)}}. + * supplied to {@link Builder#setColorized(boolean)}. */ public static final String EXTRA_COLORIZED = "android.colorized"; @@ -1358,7 +1358,7 @@ public class Notification implements Parcelable * * This is intended for {@link RemoteInput}s that only accept data, meaning * {@link RemoteInput#getAllowFreeFormInput} is false, {@link RemoteInput#getChoices} - * is null or empty, and {@link RemoteInput#getAllowedDataTypes is non-null and not + * is null or empty, and {@link RemoteInput#getAllowedDataTypes} is non-null and not * empty. These {@link RemoteInput}s will be ignored by devices that do not * support non-text-based {@link RemoteInput}s. See {@link Builder#build}. * |