Skip to content

Commit

Permalink
Merge branch 'SDKS-7478_1' into SDKS-7478_2
Browse files Browse the repository at this point in the history
  • Loading branch information
gthea committed Sep 13, 2023
2 parents a3f4925 + 95c88ee commit 7c8cc4d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import io.split.android.client.dtos.Split;
import io.split.android.client.dtos.Status;
import io.split.android.client.utils.logger.Logger;

interface FeatureFlagProcessStrategy {

Expand Down Expand Up @@ -37,7 +36,6 @@ class NamesProcessStrategy implements FeatureFlagProcessStrategy {

@Override
public void process(List<Split> activeFeatureFlags, List<Split> archivedFeatureFlags, Split featureFlag) {
Logger.v("Processing with names");
// If the feature flag name is in the filter, we process it according to its status. Otherwise it is ignored
if (mConfiguredValues.contains(featureFlag.name)) {
mStatusProcessStrategy.process(activeFeatureFlags, archivedFeatureFlags, featureFlag);
Expand All @@ -57,7 +55,6 @@ class SetsProcessStrategy implements FeatureFlagProcessStrategy {

@Override
public void process(List<Split> activeFeatureFlags, List<Split> archivedFeatureFlags, Split featureFlag) {
Logger.v("Processing with sets");
if (featureFlag.sets == null || featureFlag.sets.isEmpty()) {
archivedFeatureFlags.add(featureFlag);
return;
Expand Down

0 comments on commit 7c8cc4d

Please sign in to comment.