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

Commit b356380b 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: 438547944
Test: m checkapi
Change-Id: Iff6ee4f229f61935c8afd63af39614c144824727
parent 4584385d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,5 +15,5 @@
 */
package android.app.blob;

/** {@hide} */
/** @hide */
parcelable BlobHandle;
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -15,5 +15,5 @@
 */
package android.app.blob;

/** {@hide} */
/** @hide */
parcelable BlobInfo;
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 */
package android.app.blob;

/** {@hide} */
/** @hide */
oneway interface IBlobCommitCallback {
    void onResult(int result);
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ import android.app.blob.IBlobStoreSession;
import android.app.blob.LeaseInfo;
import android.os.RemoteCallback;

/** {@hide} */
/** @hide */
interface IBlobStoreManager {
    long createSession(in BlobHandle handle, in String packageName);
    IBlobStoreSession openSession(long sessionId, in String packageName);
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ package android.app.blob;
import android.app.blob.IBlobCommitCallback;
import android.os.ParcelFileDescriptor;

/** {@hide} */
/** @hide */
interface IBlobStoreSession {
    ParcelFileDescriptor openWrite(long offsetBytes, long lengthBytes);
    ParcelFileDescriptor openRead();
Loading