Fix StanzaCollector's Exception message: s/Packet/Stanza/

This commit is contained in:
Florian Schmaus 2018-06-11 18:24:37 +02:00
parent 77707737df
commit 1dec29617e
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ public class StanzaCollector {
private void throwIfCancelled() {
if (cancelled) {
throw new IllegalStateException("Packet collector already cancelled");
throw new IllegalStateException("Stanza collector already cancelled");
}
}