mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Make SASLAuthentication.authenticationFailed(Exception) private
This commit is contained in:
parent
7fce6b5a98
commit
7e76712c46
1 changed files with 1 additions and 1 deletions
|
@ -302,7 +302,7 @@ public final class SASLAuthentication {
|
||||||
authenticationFailed(new SASLErrorException(currentMechanism.getName(), saslFailure));
|
authenticationFailed(new SASLErrorException(currentMechanism.getName(), saslFailure));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void authenticationFailed(Exception exception) {
|
private void authenticationFailed(Exception exception) {
|
||||||
saslException = exception;
|
saslException = exception;
|
||||||
// Wake up the thread that is waiting in the #authenticate method
|
// Wake up the thread that is waiting in the #authenticate method
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
|
|
Loading…
Reference in a new issue