Skip to content

Commit

Permalink
add private visibility modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelamo committed Oct 12, 2023
1 parent 585f041 commit 6d7029d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
@Requires(property = "hazelcast.client")
public class HazelcastClientConfiguration extends ClientConfig {

String config;
@Nullable
private String config;

@ConfigurationBuilder(value = "network", includes = {"smartRouting", "connectionTimeout", "addresses",
"redoOperation", "outboundPortDefinitions", "outboundPorts"})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
@Requires(missingProperty = "hazelcast.client")
public class HazelcastMemberConfiguration extends Config {

String config;
@Nullable
private String config;

/**
* Default constructor.
Expand Down

0 comments on commit 6d7029d

Please sign in to comment.