Skip to content

Commit d869412

Browse files
authored
fix: Change visibilty of Protocol (#167)
Modify default visibility to public so it can used correctly.
1 parent 5a0ab8a commit d869412

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/flagsmith/config/FlagsmithConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ public FlagsmithConfig build() {
292292
}
293293

294294
// This enum prevents leakage of the underlying HTTP client implementation details.
295-
enum Protocol {
295+
public enum Protocol {
296296
HTTP_1_1(okhttp3.Protocol.HTTP_1_1),
297297
HTTP_2(okhttp3.Protocol.HTTP_2);
298298

0 commit comments

Comments
 (0)