Correct javadoc usage

"{@see" aren't rendered properly. Replace them with "See {@link"
or @see depending on the usage.

Bug: 238753273
Test: make doc-comment-check-docs ; Check the doc result
Change-Id: I70cb2f36e7c5fa8102b5949054df5184d755202c
This commit is contained in:
chiachangwang
2022-07-15 02:25:52 +00:00
parent e9c44ce718
commit 9473c59980
13 changed files with 33 additions and 33 deletions

View File

@@ -118,7 +118,7 @@ public abstract class NetworkStatsProvider {
*
* @param token the token under which these stats were gathered. Providers can call this method
* with the current token as often as they want, until the token changes.
* {@see NetworkStatsProvider#onRequestStatsUpdate()}
* See {@link NetworkStatsProvider#onRequestStatsUpdate(int)}
* @param ifaceStats the {@link NetworkStats} per interface to be reported.
* The provider should not include any traffic that is already counted by
* kernel interface counters.

View File

@@ -126,7 +126,7 @@ import java.util.concurrent.Executor;
* http://www.iana.org/form/ports-service. Existing services can be found at
* http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml
*
* {@see NsdServiceInfo}
* @see NsdServiceInfo
*/
@SystemService(Context.NSD_SERVICE)
public final class NsdManager {

View File

@@ -34,7 +34,7 @@ import java.util.Map;
/**
* A class representing service information for network service discovery
* {@see NsdManager}
* @see NsdManager
*/
public final class NsdServiceInfo implements Parcelable {