Merge pull request #415 from vanitasvitae/NEDEtypo

NoEndpointDiscoveredException: s/Not/No
This commit is contained in:
Florian Schmaus 2020-07-30 08:48:57 +02:00 committed by GitHub
commit a356e91108
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ public abstract class SmackException extends Exception {
if (lookupFailures.isEmpty()) {
sb.append("No endpoint lookup finished within the timeout");
} else {
sb.append("Not endpoints could be discovered due the following lookup failures: ");
sb.append("No endpoints could be discovered due the following lookup failures: ");
StringUtils.appendTo(lookupFailures, sb);
}