Skip to content

Commit

Permalink
fix: make flagsmith classes public (#213)
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert authored Feb 7, 2023
1 parent 103fe68 commit 137497a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
* FlagsmithProvider is the JAVA provider implementation for the feature flag solution Flagsmith.
*/
@Slf4j
class FlagsmithProvider implements FeatureProvider {
public class FlagsmithProvider implements FeatureProvider {

private static final String NAME = "Flagsmith Provider";
private static FlagsmithClient flagsmith;
private FlagsmithClient flagsmith;
private FlagsmithProviderOptions options;

public FlagsmithProvider(FlagsmithProviderOptions options) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@SuppressFBWarnings(value = {"EI_EXPOSE_REP", "EI_EXPOSE_REP2"}, justification = "The headers need to be mutable")
@Builder(toBuilder = true)
@Getter
class FlagsmithProviderOptions {
public class FlagsmithProviderOptions {

/**
* Your API Token.
Expand Down

0 comments on commit 137497a

Please sign in to comment.