1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-18 01:14:50 +02:00

Merge pull request #292 from igniterealtime/guusdk-patch-1

To many s'ses
This commit is contained in:
Florian Schmaus 2019-02-14 16:13:30 +01:00 committed by GitHub
commit ae208d6a2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -233,7 +233,7 @@ public class XmppConnectionManager<DC extends AbstractXMPPConnection> {
if (sinttestConfiguration.isAccountRegistrationPossible()) { if (sinttestConfiguration.isAccountRegistrationPossible()) {
int unsuccessfullyDeletedAccountsCount = connections.size() - successfullyDeletedAccountsCount; int unsuccessfullyDeletedAccountsCount = connections.size() - successfullyDeletedAccountsCount;
if (unsuccessfullyDeletedAccountsCount == 0) { if (unsuccessfullyDeletedAccountsCount == 0) {
LOGGER.info("Successsfully deleted all created accounts ✔"); LOGGER.info("Successfully deleted all created accounts ✔");
} else { } else {
LOGGER.warning("Could not delete all created accounts, " + unsuccessfullyDeletedAccountsCount + " remainaing"); LOGGER.warning("Could not delete all created accounts, " + unsuccessfullyDeletedAccountsCount + " remainaing");
} }