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:
@@ -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.
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user