Inline export account data feature flag.

This commit is contained in:
Clark Chen
2023-04-11 15:32:52 -04:00
committed by Greyson Parrelli
parent a35a167e7a
commit ef058a1644
3 changed files with 7 additions and 20 deletions

View File

@@ -108,7 +108,6 @@ public final class FeatureFlags {
private static final String ANY_ADDRESS_PORTS_KILL_SWITCH = "android.calling.fieldTrial.anyAddressPortsKillSwitch";
private static final String CALLS_TAB = "android.calls.tab";
private static final String TEXT_FORMATTING_SPOILER_SEND = "android.textFormatting.spoilerSend";
private static final String EXPORT_ACCOUNT_DATA = "android.exportAccountData";
private static final String AD_HOC_CALLING = "android.calling.ad.hoc";
/**
@@ -168,8 +167,7 @@ public final class FeatureFlags {
TEXT_FORMATTING,
ANY_ADDRESS_PORTS_KILL_SWITCH,
CALLS_TAB,
TEXT_FORMATTING_SPOILER_SEND,
EXPORT_ACCOUNT_DATA
TEXT_FORMATTING_SPOILER_SEND
);
@VisibleForTesting
@@ -607,13 +605,6 @@ public final class FeatureFlags {
return getBoolean(CALLS_TAB, false);
}
/**
* Whether or not the ability to export account data is enabled
*/
public static boolean exportAccountData() {
return getBoolean(EXPORT_ACCOUNT_DATA, false);
}
/**
* Whether or not ad-hoc calling is enabled
*/