mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-05 08:45:02 -05:00
Make some magic number constants final
This commit is contained in:
parent
af0f8e87bb
commit
ea61142d7e
@ -42,9 +42,9 @@ public class NotificationService {
|
||||
|
||||
private final LinkedHashMap<String, ArrayList<Message>> notifications = new LinkedHashMap<>();
|
||||
|
||||
public static int NOTIFICATION_ID = 0x2342;
|
||||
public static int FOREGROUND_NOTIFICATION_ID = 0x8899;
|
||||
public static int ERROR_NOTIFICATION_ID = 0x5678;
|
||||
public static final int NOTIFICATION_ID = 0x2342;
|
||||
public static final int FOREGROUND_NOTIFICATION_ID = 0x8899;
|
||||
public static final int ERROR_NOTIFICATION_ID = 0x5678;
|
||||
|
||||
private Conversation mOpenConversation;
|
||||
private boolean mIsInForeground;
|
||||
|
Loading…
Reference in New Issue
Block a user