Skip to content

Commit 137497a

Browse files
authored
fix: make flagsmith classes public (#213)
Signed-off-by: Todd Baert <[email protected]>
1 parent 103fe68 commit 137497a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

providers/flagsmith/src/main/java/dev.openfeature.contrib.providers.flagsmith/FlagsmithProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
* FlagsmithProvider is the JAVA provider implementation for the feature flag solution Flagsmith.
3232
*/
3333
@Slf4j
34-
class FlagsmithProvider implements FeatureProvider {
34+
public class FlagsmithProvider implements FeatureProvider {
3535

3636
private static final String NAME = "Flagsmith Provider";
37-
private static FlagsmithClient flagsmith;
37+
private FlagsmithClient flagsmith;
3838
private FlagsmithProviderOptions options;
3939

4040
public FlagsmithProvider(FlagsmithProviderOptions options) {

providers/flagsmith/src/main/java/dev.openfeature.contrib.providers.flagsmith/FlagsmithProviderOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
@SuppressFBWarnings(value = {"EI_EXPOSE_REP", "EI_EXPOSE_REP2"}, justification = "The headers need to be mutable")
1717
@Builder(toBuilder = true)
1818
@Getter
19-
class FlagsmithProviderOptions {
19+
public class FlagsmithProviderOptions {
2020

2121
/**
2222
* Your API Token.

0 commit comments

Comments
 (0)