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

Add missing break statement to deleteViaServiceAdministration()

in IntTestUtil.
This commit is contained in:
Florian Schmaus 2017-03-18 19:19:48 +01:00
parent 1e0481b355
commit 76adf22ba1

View file

@ -180,6 +180,7 @@ public class IntTestUtil {
ServiceAdministrationManager adminManager = ServiceAdministrationManager.getInstanceFor(connection);
try {
adminManager.deleteUser(accountToDelete);
break;
}
catch (NoResponseException | XMPPErrorException | NotConnectedException | InterruptedException e) {
LOGGER.log(Level.WARNING, "Exception deleting account for " + connection, e);