mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 10:20:25 +01:00
Remove multi-forward feature flag.
This commit is contained in:
@@ -82,7 +82,6 @@ public final class FeatureFlags {
|
||||
private static final String RETRY_RECEIPTS = "android.retryReceipts";
|
||||
private static final String SUGGEST_SMS_BLACKLIST = "android.suggestSmsBlacklist";
|
||||
private static final String ANNOUNCEMENT_GROUPS = "android.announcementGroups";
|
||||
private static final String FORWARD_MULTIPLE_MESSAGES = "android.forward.multiple.messages";
|
||||
|
||||
/**
|
||||
* We will only store remote values for flags in this set. If you want a flag to be controllable
|
||||
@@ -118,8 +117,7 @@ public final class FeatureFlags {
|
||||
SENDER_KEY,
|
||||
RETRY_RECEIPTS,
|
||||
SUGGEST_SMS_BLACKLIST,
|
||||
ANNOUNCEMENT_GROUPS,
|
||||
FORWARD_MULTIPLE_MESSAGES
|
||||
ANNOUNCEMENT_GROUPS
|
||||
);
|
||||
|
||||
@VisibleForTesting
|
||||
@@ -385,11 +383,6 @@ public final class FeatureFlags {
|
||||
return getString(SUGGEST_SMS_BLACKLIST, "");
|
||||
}
|
||||
|
||||
/** Whether the user is able to forward multiple messages at once */
|
||||
public static boolean forwardMultipleMessages() {
|
||||
return getBoolean(FORWARD_MULTIPLE_MESSAGES, false);
|
||||
}
|
||||
|
||||
/** Only for rendering debug info. */
|
||||
public static synchronized @NonNull Map<String, Object> getMemoryValues() {
|
||||
return new TreeMap<>(REMOTE_VALUES);
|
||||
|
||||
Reference in New Issue
Block a user