mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-18 02:02:04 +01:00
Fix typo in StateDescriptor method: s/Inferiorty/Inferiority/
This commit is contained in:
parent
3003094130
commit
64fb47c98b
2 changed files with 2 additions and 2 deletions
|
@ -133,7 +133,7 @@ public abstract class StateDescriptor {
|
|||
addAndCheckNonExistent(precedenceOver, subordinate);
|
||||
}
|
||||
|
||||
protected void declareInferiortyTo(Class<? extends StateDescriptor> superior) {
|
||||
protected void declareInferiorityTo(Class<? extends StateDescriptor> superior) {
|
||||
addAndCheckNonExistent(inferiorTo, superior);
|
||||
}
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ public class StreamManagementModule extends ModularXmppClientToServerConnectionM
|
|||
addPredeccessor(AuthenticatedButUnboundStateDescriptor.class);
|
||||
addSuccessor(AuthenticatedAndResourceBoundStateDescriptor.class);
|
||||
declarePrecedenceOver(ResourceBindingStateDescriptor.class);
|
||||
declareInferiortyTo(CompressionStateDescriptor.class);
|
||||
declareInferiorityTo(CompressionStateDescriptor.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue