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

Commit b3109cee authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Disable context sync telecom code by default" into udc-dev am: e5257275 am: 26dd1113

parents a67da823 26dd1113
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -31,10 +31,10 @@ public class CompanionDeviceConfig {
    public static final String ENABLE_CONTEXT_SYNC_TELECOM = "enable_context_sync_telecom";

    /**
     * Returns whether the given flag is currently enabled, with a default value of {@code true}.
     * Returns whether the given flag is currently enabled, with a default value of {@code false}.
     */
    public static boolean isEnabled(String flag) {
        return DeviceConfig.getBoolean(NAMESPACE_COMPANION, flag, /* defaultValue= */ true);
        return DeviceConfig.getBoolean(NAMESPACE_COMPANION, flag, /* defaultValue= */ false);
    }

    /**