From d80824b57d64be02ca2f50660ae170680d2d9613 Mon Sep 17 00:00:00 2001 From: Andrew Solovay Date: Mon, 10 Oct 2022 16:55:46 -0700 Subject: [PATCH] docs: Fixing badly-formatted doc comment The Javadoc specification doesn't actually define a {@more} tag. The Java-reference engine interpreted it as a paragraph break, but the Kotlin doc engine (more properly) passed the tag through verbatim. Replaced it with a

to make it a paragraph break in both languages. Bug: 247563816 Test: (docs build) Change-Id: Ib7bb4c2628141b7479c338f1d3fb28da503b847f --- core/java/android/app/NotificationManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/app/NotificationManager.java b/core/java/android/app/NotificationManager.java index 392f52a08fb5c..f6d27ad08b009 100644 --- a/core/java/android/app/NotificationManager.java +++ b/core/java/android/app/NotificationManager.java @@ -66,9 +66,9 @@ import java.util.Objects; /** * Class to notify the user of events that happen. This is how you tell - * the user that something has happened in the background. {@more} + * the user that something has happened in the background. * - * Notifications can take different forms: + *

Notifications can take different forms: *