1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-22 11:24:49 +02:00

SMACK-379 Removed mandatory session establishment, since it was dropped from the newer XMPP-IM RFC (a.k.a. RFC 6121)

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13521 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Florian Schmaus 2013-02-26 08:44:32 +00:00 committed by flow
parent da1987a98b
commit 5dea9d3ee1

View file

@ -473,10 +473,6 @@ public class SASLAuthentication implements UserAuthentication {
throw new XMPPException(ack.getError());
}
}
else {
// Server never offered session establishment
throw new XMPPException("Session establishment not offered by server");
}
return userJID;
}