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

Commit 2317f98b authored by Robert Horvath's avatar Robert Horvath
Browse files

Enable Low Power Standby policy & standby ports features by default

Test: atest LowPowerStandbyControllerTest
Bug: 290750316
Change-Id: If109365ebc818c6b3591ce775681a4d18afaca14
parent 52b3af4e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1369,7 +1369,7 @@ public class LowPowerStandbyController {
         * Otherwise, returns false, and the default policy will be used.
         */
        public boolean enableCustomPolicy() {
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_POLICY, false);
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_POLICY, true);
        }

        /**
@@ -1377,7 +1377,7 @@ public class LowPowerStandbyController {
         * Otherwise, returns false, and {@link #getActiveStandbyPorts()} will always be empty.
         */
        public boolean enableStandbyPorts() {
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_STANDBY_PORTS, false);
            return DeviceConfig.getBoolean(NAMESPACE, FEATURE_FLAG_ENABLE_STANDBY_PORTS, true);
        }

        /**