Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c0adb07 authored by Sunny Goyal's avatar Sunny Goyal Committed by android-build-merger
Browse files

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

am: c7a49f05

* commit 'c7a49f05':
  Removign 'final' modifiers from FeatureFlags so that then can be overridden
parents fda9dead c7a49f05
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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;

}