Merge "Update javaDoc to make it consistent" am: 36d1da8f62 am: bb446b0c37

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1424828

Change-Id: I4f13d5167bb237ad7ba4177f60dfc14fb3a8dbda
This commit is contained in:
Nate Jiang
2020-10-07 23:08:37 +00:00
committed by Automerger Merge Worker

View File

@@ -22,10 +22,14 @@ import android.annotation.SystemApi;
/** /**
* Describes specific properties of a requested network for use in a {@link NetworkRequest}. * Describes specific properties of a requested network for use in a {@link NetworkRequest}.
* *
* Applications cannot instantiate this class by themselves, but can obtain instances of * This as an abstract class. Applications shouldn't instantiate this class by themselves, but can
* subclasses of this class via other APIs. * obtain instances of subclasses of this class via other APIs.
*/ */
public abstract class NetworkSpecifier { public abstract class NetworkSpecifier {
/**
* Create a placeholder object. Please use subclasses of this class in a {@link NetworkRequest}
* to request a network.
*/
public NetworkSpecifier() {} public NetworkSpecifier() {}
/** /**