Remove blockSSE feature flag.

This commit is contained in:
Greyson Parrelli
2024-02-06 10:11:19 -05:00
parent d7d7963101
commit bc930345b9
2 changed files with 0 additions and 12 deletions

View File

@@ -84,7 +84,6 @@ public final class FeatureFlags {
private static final String USE_HARDWARE_AEC_IF_OLD = "android.calling.useHardwareAecIfOlderThanApi29";
private static final String PAYMENTS_COUNTRY_BLOCKLIST = "global.payments.disabledRegions";
public static final String PHONE_NUMBER_PRIVACY = "android.pnp";
public static final String BLOCK_SSE = "android.blockSessionSwitchoverEvents";
private static final String STORIES_AUTO_DOWNLOAD_MAXIMUM = "android.stories.autoDownloadMaximum";
private static final String TELECOM_MANUFACTURER_ALLOWLIST = "android.calling.telecomAllowList";
private static final String TELECOM_MODEL_BLOCKLIST = "android.calling.telecomModelBlockList";
@@ -183,7 +182,6 @@ public final class FeatureFlags {
USERNAMES,
INSTANT_VIDEO_PLAYBACK,
CRASH_PROMPT_CONFIG,
BLOCK_SSE,
SEPA_DEBIT_DONATIONS,
IDEAL_DONATIONS,
IDEAL_ENABLED_REGIONS,
@@ -261,7 +259,6 @@ public final class FeatureFlags {
PROMPT_BATTERY_SAVER,
USERNAMES,
CRASH_PROMPT_CONFIG,
BLOCK_SSE,
CALLING_REACTIONS,
NOTIFICATION_THUMBNAIL_BLOCKLIST,
CALLING_RAISE_HAND,
@@ -385,13 +382,6 @@ public final class FeatureFlags {
return getBoolean(PHONE_NUMBER_PRIVACY, false) || Environment.IS_PNP;
}
/**
* Whether session switchover events should be blocked on the client.
*/
public static boolean blockSessionSwitchoverEvents() {
return getBoolean(BLOCK_SSE, false) && !phoneNumberPrivacy();
}
/** Whether to use the custom streaming muxer or built in android muxer. */
public static boolean useStreamingVideoMuxer() {
return getBoolean(CUSTOM_VIDEO_MUXER, false);