Make SASLAuthentication.authenticationFailed(Exception) private

This commit is contained in:
Florian Schmaus 2019-02-10 21:51:01 +01:00
parent 7fce6b5a98
commit 7e76712c46
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ public final class SASLAuthentication {
authenticationFailed(new SASLErrorException(currentMechanism.getName(), saslFailure));
}
public void authenticationFailed(Exception exception) {
private void authenticationFailed(Exception exception) {
saslException = exception;
// Wake up the thread that is waiting in the #authenticate method
synchronized (this) {