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:
Günther Niess 2009-09-09 12:02:09 +00:00 committed by niess
parent fd8b232017
commit 08d7645f2c
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ public abstract class SASLMechanism implements CallbackHandler {
public String toXML() {
StringBuilder stanza = new StringBuilder();
stanza.append("<response xmlns=\"urn:ietf:params:xml:ns:xmpp-sasl\">");
if (authenticationText == null) {
if (authenticationText != null) {
stanza.append(authenticationText);
}
else {