1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-25 21:14:51 +02:00

Fix typo: s/Conditoin/Condition/

This commit is contained in:
Florian Schmaus 2015-01-12 13:43:25 +01:00
parent b0cecee710
commit 47ced860ec

View file

@ -269,7 +269,7 @@ public class XMPPError extends AbstractError {
try {
condition = Condition.valueOf(string);
} catch (Exception e) {
throw new IllegalStateException("Could not transform string '" + string + "' to XMPPErrorConditoin", e);
throw new IllegalStateException("Could not transform string '" + string + "' to XMPPErrorCondition", e);
}
return condition;
}