diff options
| author | 2018-08-28 09:10:24 -0700 | |
|---|---|---|
| committer | 2018-08-28 09:10:24 -0700 | |
| commit | 413ad6c7272aee8bebb893bbd22994912eb5fdcf (patch) | |
| tree | 5e4eb95d40af463235b6f6c3b128f42e94d0803d | |
| parent | 5ac02a500a066eca10e75f90547c378e2c6e8c92 (diff) | |
| parent | 5e99817407bd9ad9082dace254a6a74adb9685e8 (diff) | |
Merge "Add <p> to UnsupportedAppUsage javadoc." am: dfd7bc77c3
am: 5e99817407
Change-Id: I1adcdf43489bfc1889b297e298c88fe2d814f65f
| -rw-r--r-- | core/java/android/annotation/UnsupportedAppUsage.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/java/android/annotation/UnsupportedAppUsage.java b/core/java/android/annotation/UnsupportedAppUsage.java index fbba6dafde29..28145a06ecf2 100644 --- a/core/java/android/annotation/UnsupportedAppUsage.java +++ b/core/java/android/annotation/UnsupportedAppUsage.java @@ -27,15 +27,15 @@ import java.lang.annotation.Target; * Indicates that a class member, that is not part of the SDK, is used by apps. * Since the member is not part of the SDK, such use is not supported. * - * This annotation acts as a heads up that changing a given method or field + * <p>This annotation acts as a heads up that changing a given method or field * may affect apps, potentially breaking them when the next Android version is * released. In some cases, for members that are heavily used, this annotation * may imply restrictions on changes to the member. * - * This annotation also results in access to the member being permitted by the + * <p>This annotation also results in access to the member being permitted by the * runtime, with a warning being generated in debug builds. * - * For more details, see go/UnsupportedAppUsage. + * <p>For more details, see go/UnsupportedAppUsage. * * {@hide} */ @@ -53,15 +53,15 @@ public @interface UnsupportedAppUsage { /** * Indicates that usage of this API is limited to apps based on their target SDK version. * - * Access to the API is allowed if the targetSdkVersion in the apps manifest is no greater than - * this value. Access checks are performed at runtime. + * <p>Access to the API is allowed if the targetSdkVersion in the apps manifest is no greater + * than this value. Access checks are performed at runtime. * - * This is used to give app developers a grace period to migrate off a non-SDK interface. When - * making Android version N, existing APIs can have a maxTargetSdk of N-1 added to them. + * <p>This is used to give app developers a grace period to migrate off a non-SDK interface. + * When making Android version N, existing APIs can have a maxTargetSdk of N-1 added to them. * Developers must then migrate off the API when their app is updated in future, but it will * continue working in the meantime. * - * Possible values are: + * <p>Possible values are: * <ul> * <li> * {@link android.os.Build.VERSION_CODES#O} or {@link android.os.Build.VERSION_CODES#P}, |