1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-12-09 06:31:08 +01:00

Fix typo: s/interna_server_error/internal_server_error/

This commit is contained in:
Florian Schmaus 2014-03-11 19:30:55 +01:00
parent 7341421ca9
commit 67722aea93
3 changed files with 7 additions and 7 deletions

View file

@ -636,11 +636,11 @@ public class AdHocCommandManager extends Manager {
}
catch (InstantiationException e) {
throw new XMPPException(new XMPPError(
XMPPError.Condition.interna_server_error));
XMPPError.Condition.internal_server_error));
}
catch (IllegalAccessException e) {
throw new XMPPException(new XMPPError(
XMPPError.Condition.interna_server_error));
XMPPError.Condition.internal_server_error));
}
return command;
}