From 5800245d1bc194bef1bd048e34650a302ecf3db0 Mon Sep 17 00:00:00 2001 From: Mathew Inwood Date: Fri, 17 Jan 2020 11:16:58 +0000 Subject: [PATCH] Fix broken links in @ChangeId javadoc. We will soon have javadoc generated from the doc comments on all @ChangeId annotated constants. Since the link target referred to here is a @hide constant, it cannot be resolved as part of DAC doc generation. Replace it with {@code} specifying the constants value instead. Bug: 144927670 Test: In follow up CLs Change-Id: I9947e722dca228705190e8f2c49e47104c04dea6 --- .../manageapplications/ManageApplications.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/android/settings/applications/manageapplications/ManageApplications.java b/src/com/android/settings/applications/manageapplications/ManageApplications.java index 92e8950663d..2597665229b 100644 --- a/src/com/android/settings/applications/manageapplications/ManageApplications.java +++ b/src/com/android/settings/applications/manageapplications/ManageApplications.java @@ -181,10 +181,10 @@ public class ManageApplications extends InstrumentedFragment private static final int NO_USER_SPECIFIED = -1; /** - * Intents with action {@link android.provider.Settings#ACTION_MANAGE_APP_OVERLAY_PERMISSION} - * and data URI scheme "package" don't go to the app-specific screen for managing the permission - * anymore. Instead, they redirect to this screen for managing all the apps that have requested - * such permission. + * Intents with action {@code android.settings.MANAGE_APP_OVERLAY_PERMISSION} + * and data URI scheme {@code package} don't go to the app-specific screen for managing the + * permission anymore. Instead, they redirect to this screen for managing all the apps that have + * requested such permission. */ @ChangeId private static final long CHANGE_RESTRICT_SAW_INTENT = 135920175L;