Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2c63c43 authored by Paul Duffin's avatar Paul Duffin
Browse files

Replace {@hide} with @hide

In most places the `@hide` doctag is treated as a block tag on its own
line. However, there are a few places where it is treated as an inline
doctag, i.e. `{@hide}`. Dealing with both types increases the
complexity of Metalava and makes it slightly slower.

This change replaces the inline doctag form `{@hide}` with a block tag.

Flag: EXEMPT replacing {@hide} with @hide does not change API or behavior
Bug: 429965593
Test: m checkapi
Change-Id: I9180f91a95a4abac28e1e43f7d22a84e1d8784db
parent 8830c27e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
package android.hardware;

/**
 * {@hide}
 * @hide
 */
parcelable CameraFeatureCombinationStats {
    /**
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ package android.media;
 * Native accessible interface for AudioService.
 * Note this interface has a mix of oneway and non-oneway methods. This is intentional for certain
 * calls intended to come from audioserver.
 * {@hide}
 * @hide
 */
interface IAudioManagerNative {
    enum HardeningType {
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ package android.media;
import android.media.InterpolatorType;

/**
 * {@hide}
 * @hide
 */
parcelable InterpolatorConfig {
    InterpolatorType type = InterpolatorType.CUBIC;
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ package android.media;
/**
 * Polynomial spline interpolators.
 *
 * {@hide}
 * @hide
 */
@Backing(type="int")
enum InterpolatorType {
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ import android.media.audio.common.MicrophoneDynamicInfo;
import android.media.audio.common.MicrophoneInfo;

/**
 * {@hide}
 * @hide
 */
parcelable MicrophoneInfoFw {
    MicrophoneInfo info;
Loading