Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Valmira Correa committed Sep 27, 2022
1 parent c1c050d commit ed65728
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ protected static SslContext createSSLContext(TLSConfig tlsConfig) throws IOExcep
builder.keyManager(keyManagerFactory);
builder.trustManager(trustManagerFactory);
}
if (tlsConfig.getCipherSuites().isPresent())
if (tlsConfig.getCipher_suites().isPresent())
{
builder.ciphers(Arrays.asList(tlsConfig.getCipherSuites().get()));
builder.ciphers(Arrays.asList(tlsConfig.getCipher_suites().get()));
}
return builder.protocols(tlsConfig.getProtocols()).build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public final String getProtocol()
return protocol;
}

public String[] getProtocols()
public final String[] getProtocols()
{
return protocol.split(",");
}
Expand Down Expand Up @@ -201,7 +201,7 @@ public final boolean equals(final Object o)
}
TLSConfig tlsConfig = (TLSConfig) o;
return enabled == tlsConfig.enabled
require_endpoint_verification == tlsConfig.require_endpoint_verification
&& require_endpoint_verification == tlsConfig.require_endpoint_verification
&& Objects.equals(keystore, tlsConfig.keystore)
&& Objects.equals(keystore_password, tlsConfig.keystore_password)
&& Objects.equals(truststore, tlsConfig.truststore)
Expand Down

0 comments on commit ed65728

Please sign in to comment.