summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Santiago Seifert <aquilescanta@google.com> 2020-04-07 19:32:21 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-04-07 19:32:21 +0000
commit995870accdd613c2a89c59ce4f7607ece3e05d5f (patch)
tree9acaad7d080bf953b56947c0a5a33a9750c9310b
parentb1cd7d54a178f6d6fb93a9a6c4bf5d8377bdb11c (diff)
parent84d1c574ec8cda04e2b9a55e0d9e0081b44db5e1 (diff)
Merge "Rephrase NonNull javadoc to make it more generic" into rvc-dev
-rw-r--r--core/java/android/annotation/NonNull.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/annotation/NonNull.java b/core/java/android/annotation/NonNull.java
index a95bf3b8061e..c5aff9d6794e 100644
--- a/core/java/android/annotation/NonNull.java
+++ b/core/java/android/annotation/NonNull.java
@@ -30,8 +30,8 @@ import java.lang.annotation.Target;
* <p>
* This is a marker annotation and it has no specific attributes.
*
- * @paramDoc This value must never be {@code null}.
- * @returnDoc This value will never be {@code null}.
+ * @paramDoc This value cannot be {@code null}.
+ * @returnDoc This value cannot be {@code null}.
* @hide
*/
@Retention(SOURCE)