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
1 changed files with 1 additions and 0 deletions

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);