1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-17 17:04:49 +02: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 @Override
public String toString() { public String toString() {
return getClass().getSimpleName() + ": " + packetType.getName(); return getClass().getSimpleName() + ": " + packetType.getSimpleName();
} }
} }