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

Commit 12502f33 authored by Tor Norbye's avatar Tor Norbye Committed by Android (Google) Code Review
Browse files

Merge "@IntDef is switching from long to int values"

parents e9e121b4 fa04f703
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -104,7 +104,8 @@ public class ContactsUtils {
     * dialer is running inside Work Profile.
     */
    @Retention(RetentionPolicy.SOURCE)
    @IntDef({USER_TYPE_CURRENT, USER_TYPE_WORK})
    // TODO: Switch to @LongDef once @LongDef is available in the support library
    @IntDef({(int)USER_TYPE_CURRENT, (int)USER_TYPE_WORK})
    public @interface UserType {}

    /**