Merge "Removing some obsolete files" into ub-launcher3-burnaby-polish
diff --git a/src/com/android/launcher3/config/FeatureFlags.java b/src/com/android/launcher3/config/FeatureFlags.java
index 6d015d0..5012708 100644
--- a/src/com/android/launcher3/config/FeatureFlags.java
+++ b/src/com/android/launcher3/config/FeatureFlags.java
@@ -19,7 +19,7 @@
 /**
  * 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 @@
 
     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;
 
 }