diff options
Diffstat (limited to 'core/java/android/annotation/IntDef.java')
| -rw-r--r-- | core/java/android/annotation/IntDef.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/annotation/IntDef.java b/core/java/android/annotation/IntDef.java index 3f9064e4dd73..637fc1e6afe2 100644 --- a/core/java/android/annotation/IntDef.java +++ b/core/java/android/annotation/IntDef.java @@ -55,7 +55,7 @@ public @interface IntDef { String[] prefix() default ""; /** Defines the allowed constants for this element */ - long[] value() default {}; + int[] value() default {}; /** Defines whether the constants can be used as a flag, or just as an enum (the default) */ boolean flag() default false; |
