1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +01:00

Use simple name in StanzaTypeFilter

This commit is contained in:
Florian Schmaus 2016-03-16 10:02:21 +01:00
parent e1dfb53483
commit 8235e8417d

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