1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-23 03:54:54 +02:00

Make SASLAuthentication.authenticationFailed(Exception) private

This commit is contained in:
Florian Schmaus 2019-02-10 21:51:01 +01:00
parent 7fce6b5a98
commit 7e76712c46

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) {