usb: Remove IntDef flag when it isn't a flag

Some Int Def annotations were marked with `flag=true` by mistake.
This commit will remove the definition so that the flag
will be marked as false by default.

Bug: 174239412
Test: full build pass
Change-Id: I32328d76699e396c53dfc62768b2cd24ab48cabd
This commit is contained in:
raychi
2020-12-02 16:29:35 +08:00
committed by Ray Chi
parent 97d08c0520
commit 920381237f
2 changed files with 3 additions and 3 deletions

View File

@@ -609,7 +609,7 @@ public class UsbManager {
public @interface UsbFunctionMode {}
/** @hide */
@IntDef(flag = true, prefix = { "GADGET_HAL_" }, value = {
@IntDef(prefix = { "GADGET_HAL_" }, value = {
GADGET_HAL_NOT_SUPPORTED,
GADGET_HAL_V1_0,
GADGET_HAL_V1_1,

View File

@@ -202,7 +202,7 @@ public final class UsbPortStatus implements Parcelable {
public static final int CONTAMINANT_PROTECTION_DISABLED =
android.hardware.usb.V1_2.Constants.ContaminantProtectionStatus.DISABLED;
@IntDef(prefix = { "CONTAMINANT_DETECION_" }, flag = true, value = {
@IntDef(prefix = { "CONTAMINANT_DETECTION_" }, value = {
CONTAMINANT_DETECTION_NOT_SUPPORTED,
CONTAMINANT_DETECTION_DISABLED,
CONTAMINANT_DETECTION_NOT_DETECTED,
@@ -221,7 +221,7 @@ public final class UsbPortStatus implements Parcelable {
@Retention(RetentionPolicy.SOURCE)
@interface ContaminantProtectionStatus{}
@IntDef(prefix = { "MODE_" }, flag = true, value = {
@IntDef(prefix = { "MODE_" }, value = {
MODE_NONE,
MODE_DFP,
MODE_UFP,