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

Add SASLMechanism.toString()

This commit is contained in:
Florian Schmaus 2017-03-18 13:18:13 +01:00
parent dcac9531e7
commit de783dce73

View file

@ -314,4 +314,9 @@ public abstract class SASLMechanism implements Comparable<SASLMechanism> {
}
return string;
}
@Override
public final String toString() {
return "SASL Mech: " + getName() + ", Prio: " + getPriority();
}
}