1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-14 23:54:52 +02:00

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

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