Skip to content

Commit

Permalink
[SDKS-7514] Create an empty list for flagsSetFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
nmayorsplit committed Sep 7, 2023
1 parent 69b7a63 commit 36d7327
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/main/java/io/split/client/SplitClientConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
import pluggable.CustomStorageWrapper;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Properties;
import java.util.concurrent.ThreadFactory;
Expand Down Expand Up @@ -424,7 +426,7 @@ public static final class Builder {
private StorageMode _storageMode = StorageMode.MEMORY;
private final long _lastSeenCacheSize = 500000;
private ThreadFactory _threadFactory;
private List<String> _flagSetsFilter = null;
private List<String> _flagSetsFilter = Collections.emptyList();

public Builder() {
}
Expand Down

0 comments on commit 36d7327

Please sign in to comment.