Use simple name in StanzaTypeFilter

This commit is contained in:
Florian Schmaus 2016-03-16 10:02:21 +01:00
parent e1dfb53483
commit 8235e8417d
1 changed files with 1 additions and 1 deletions

View File

@ -57,6 +57,6 @@ public final class StanzaTypeFilter implements StanzaFilter {
@Override
public String toString() {
return getClass().getSimpleName() + ": " + packetType.getName();
return getClass().getSimpleName() + ": " + packetType.getSimpleName();
}
}