From 3818806981b30ad313c010e97d34f2f636cc0f55 Mon Sep 17 00:00:00 2001 From: "minjie.pan" Date: Sat, 29 Oct 2022 14:39:23 +0800 Subject: [PATCH] Fix some syntax errors in javadoc No documentation found when without '#'. Test: manual Change-Id: I116fa04a7a90d4de60bd2c1b78c8dd72f3bfcf3c --- .../android/accounts/AbstractAccountAuthenticator.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/java/android/accounts/AbstractAccountAuthenticator.java b/core/java/android/accounts/AbstractAccountAuthenticator.java index 3807b503ce70d..2f32fa4216f14 100644 --- a/core/java/android/accounts/AbstractAccountAuthenticator.java +++ b/core/java/android/accounts/AbstractAccountAuthenticator.java @@ -120,27 +120,27 @@ public abstract class AbstractAccountAuthenticator { /** * Bundle key used for the {@link String} account type in session bundle. * This is used in the default implementation of - * {@link #startAddAccountSession} and {@link startUpdateCredentialsSession}. + * {@link #startAddAccountSession} and {@link #startUpdateCredentialsSession}. */ private static final String KEY_AUTH_TOKEN_TYPE = "android.accounts.AbstractAccountAuthenticato.KEY_AUTH_TOKEN_TYPE"; /** * Bundle key used for the {@link String} array of required features in * session bundle. This is used in the default implementation of - * {@link #startAddAccountSession} and {@link startUpdateCredentialsSession}. + * {@link #startAddAccountSession} and {@link #startUpdateCredentialsSession}. */ private static final String KEY_REQUIRED_FEATURES = "android.accounts.AbstractAccountAuthenticator.KEY_REQUIRED_FEATURES"; /** * Bundle key used for the {@link Bundle} options in session bundle. This is * used in default implementation of {@link #startAddAccountSession} and - * {@link startUpdateCredentialsSession}. + * {@link #startUpdateCredentialsSession}. */ private static final String KEY_OPTIONS = "android.accounts.AbstractAccountAuthenticator.KEY_OPTIONS"; /** * Bundle key used for the {@link Account} account in session bundle. This is used - * used in default implementation of {@link startUpdateCredentialsSession}. + * used in default implementation of {@link #startUpdateCredentialsSession}. */ private static final String KEY_ACCOUNT = "android.accounts.AbstractAccountAuthenticator.KEY_ACCOUNT";