Remove mailbox feature flag.

This commit is contained in:
akwizgran
2023-04-18 14:18:58 +01:00
parent 7810e7e848
commit 07e56f7086
5 changed files with 16 additions and 41 deletions

View File

@@ -211,7 +211,7 @@ public class AppModule {
@Override
public Collection<SimplexPluginFactory> getSimplexFactories() {
List<SimplexPluginFactory> simplex = new ArrayList<>();
if (featureFlags.shouldEnableMailboxInCore()) simplex.add(mailbox);
simplex.add(mailbox);
if (SDK_INT >= 19) simplex.add(drive);
return simplex;
}
@@ -352,11 +352,6 @@ public class AppModule {
return true;
}
@Override
public boolean shouldEnableMailboxInCore() {
return true;
}
@Override
public boolean shouldEnablePrivateGroupsInCore() {
return true;