Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
gthea committed Sep 14, 2023
1 parent e350d67 commit ef81e36
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ public class SplitChangeProcessor {

private final FlagSetsFilter mFlagSetsFilter;

/** @noinspection unused*/ // Used in tests
private SplitChangeProcessor() {
mSplitFilter = null;
mStatusProcessStrategy = new StatusProcessStrategy();
mFlagSetsFilter = null;
}

public SplitChangeProcessor(@Nullable Map<SplitFilter.Type, SplitFilter> filters, FlagSetsFilter flagSetsFilter) {
// We're only supporting one filter type
if (filters == null || filters.isEmpty()) {
Expand Down

0 comments on commit ef81e36

Please sign in to comment.