Rename NotificationMode.ENABLED_DEFAULT to NotificationMode.ENABLED
This commit is contained in:
parent
7c6140b331
commit
64a7978c7f
5 changed files with 6 additions and 6 deletions
|
|
@ -4,11 +4,11 @@ import androidx.annotation.IntDef;
|
|||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@IntDef({NotificationMode.DISABLED, NotificationMode.ENABLED_DEFAULT})
|
||||
@IntDef({NotificationMode.DISABLED, NotificationMode.ENABLED})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface NotificationMode {
|
||||
|
||||
int DISABLED = 0;
|
||||
int ENABLED_DEFAULT = 1;
|
||||
int ENABLED = 1;
|
||||
//other values reserved for the future
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue