Merge "Hide Status @IntDef"

This commit is contained in:
Anton Hansson
2020-01-27 19:10:21 +00:00
committed by Android (Google) Code Review
4 changed files with 1 additions and 8 deletions

View File

@@ -8606,9 +8606,6 @@ package android.os {
field public static final int STATUS_SUCCESS = 0; // 0x0
}
@IntDef(prefix={"STATUS_"}, value={android.os.HwParcel.STATUS_SUCCESS}) @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) public static @interface HwParcel.Status {
}
public interface IHwBinder {
method public boolean linkToDeath(android.os.IHwBinder.DeathRecipient, long);
method public android.os.IHwInterface queryLocalInterface(String);

View File

@@ -2218,9 +2218,6 @@ package android.os {
field public static final int STATUS_SUCCESS = 0; // 0x0
}
@IntDef(prefix={"STATUS_"}, value={android.os.HwParcel.STATUS_SUCCESS}) @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.SOURCE) public static @interface HwParcel.Status {
}
public interface IHwBinder {
method public boolean linkToDeath(android.os.IHwBinder.DeathRecipient, long);
method public android.os.IHwInterface queryLocalInterface(String);

View File

@@ -2451,8 +2451,6 @@ ProtectedMember: android.view.ViewGroup#resetResolvedDrawables():
PublicTypedef: android.os.HwParcel.Status:
PublicTypedef: android.telephony.ims.feature.MmTelFeature.MmTelCapabilities.MmTelCapability:
PublicTypedef: android.telephony.ims.feature.MmTelFeature.ProcessCallResult:

View File

@@ -38,6 +38,7 @@ import java.util.Arrays;
public class HwParcel {
private static final String TAG = "HwParcel";
/** @hide */
@IntDef(prefix = { "STATUS_" }, value = {
STATUS_SUCCESS,
})