mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-04 15:45:58 +01:00
SMACK-264: Fix typo
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11258 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
fd8b232017
commit
08d7645f2c
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ public abstract class SASLMechanism implements CallbackHandler {
|
||||||
public String toXML() {
|
public String toXML() {
|
||||||
StringBuilder stanza = new StringBuilder();
|
StringBuilder stanza = new StringBuilder();
|
||||||
stanza.append("<response xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">");
|
stanza.append("<response xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">");
|
||||||
if (authenticationText == null) {
|
if (authenticationText != null) {
|
||||||
stanza.append(authenticationText);
|
stanza.append(authenticationText);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue