Polish contribution

Closes gh-14985
This commit is contained in:
Stephane Nicoll 2018-11-28 11:26:09 +01:00
parent 108f28417e
commit 33000b6e8e
1 changed files with 2 additions and 7 deletions

View File

@ -28,7 +28,7 @@ public class Ssl {
private boolean enabled = true;
private ClientAuth clientAuth = ClientAuth.NONE;
private ClientAuth clientAuth;
private String[] ciphers;
@ -78,12 +78,7 @@ public class Ssl {
}
public void setClientAuth(ClientAuth clientAuth) {
if (clientAuth == null) {
this.clientAuth = ClientAuth.NONE;
}
else {
this.clientAuth = clientAuth;
}
this.clientAuth = clientAuth;
}
/**