Rename NotificationMode.ENABLED_DEFAULT to NotificationMode.ENABLED

This commit is contained in:
TobiGr 2021-10-15 19:59:06 +02:00
parent 7c6140b331
commit 64a7978c7f
5 changed files with 6 additions and 6 deletions

View file

@ -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
}