Removign 'final' modifiers from FeatureFlags so that then can be overridden

Change-Id: I07265eaeed883301787eb0ffd838f516d7c63d26
This commit is contained in:
Sunny Goyal
2016-01-19 10:35:52 -08:00
parent d42903b4f0
commit c7a49f0574
@@ -19,7 +19,7 @@ package com.android.launcher3.config;
/**
* Defines a set of flags used to control various launcher behaviors
* All the flags must be defined as
* public static final boolean LAUNCHER3_FLAG_NAME = true/false;
* public static boolean LAUNCHER3_FLAG_NAME = true/false;
*
* Use LAUNCHER3_ prefix for prevent namespace conflicts.
*/
@@ -27,11 +27,11 @@ public final class FeatureFlags {
private FeatureFlags() {}
public static final boolean IS_DEV_BUILD = false;
public static final boolean IS_ALPHA_BUILD = false;
public static final boolean IS_RELEASE_BUILD = true;
public static boolean IS_DEV_BUILD = false;
public static boolean IS_ALPHA_BUILD = false;
public static boolean IS_RELEASE_BUILD = true;
// Custom flags go below this
public static final boolean LAUNCHER3_ICON_NORMALIZATION = false;
public static boolean LAUNCHER3_ICON_NORMALIZATION = false;
}