From 344807f5e44b96935633b15e9f89ff93568da119 Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Fri, 5 Nov 2021 13:19:59 -0400 Subject: [PATCH] Update documentation Test: make Fixes: 193571793 Change-Id: Ia0726197b249ca5d94c84b913286b2ea19a06c13 --- core/java/android/app/Notification.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index cf54ecffa2845..6bfde9ab1a290 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -7915,7 +7915,7 @@ public class Notification implements Parcelable * Adds a message for display by this notification. Convenience call for a simple * {@link Message} in {@link #addMessage(Notification.MessagingStyle.Message)}. * @param text A {@link CharSequence} to be displayed as the message content - * @param timestamp Time at which the message arrived + * @param timestamp Time in milliseconds at which the message arrived * @param sender A {@link CharSequence} to be used for displaying the name of the * sender. Should be null for messages by the current user, in which case * the platform will insert {@link #getUserDisplayName()}. @@ -7937,7 +7937,7 @@ public class Notification implements Parcelable * Adds a message for display by this notification. Convenience call for a simple * {@link Message} in {@link #addMessage(Notification.MessagingStyle.Message)}. * @param text A {@link CharSequence} to be displayed as the message content - * @param timestamp Time at which the message arrived + * @param timestamp Time in milliseconds at which the message arrived * @param sender The {@link Person} who sent the message. * Should be null for messages by the current user, in which case * the platform will insert the user set in {@code MessagingStyle(Person)}.