SMACK-369 remove try/catch block in XMPPConnection.connect()

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/branches/smack_3_3_1@13660 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Florian Schmaus 2013-05-17 22:05:24 +00:00 committed by flow
parent 0951420d9c
commit 8e10e5f374
1 changed files with 6 additions and 12 deletions

View File

@ -1028,20 +1028,14 @@ public class XMPPConnection extends Connection {
// to the server and the connection was terminated abruptly // to the server and the connection was terminated abruptly
if (connected && wasAuthenticated) { if (connected && wasAuthenticated) {
// Make the login // Make the login
try { if (isAnonymous()) {
if (isAnonymous()) { // Make the anonymous login
// Make the anonymous login loginAnonymously();
loginAnonymously();
}
else {
login(config.getUsername(), config.getPassword(),
config.getResource());
}
notifyReconnection();
} }
catch (XMPPException e) { else {
e.printStackTrace(); login(config.getUsername(), config.getPassword(), config.getResource());
} }
notifyReconnection();
} }
} }