Make some magic number constants final

This commit is contained in:
Sam Whited 2014-12-15 11:39:18 -05:00
parent af0f8e87bb
commit ea61142d7e
1 changed files with 3 additions and 3 deletions

View File

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