Skip to content

Commit

Permalink
Fix a typo in jgroups subsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
rhusar committed Mar 20, 2017
1 parent cc405f8 commit 2b0d227
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -81,15 +81,15 @@ enum Capability implements CapabilityProvider {
JCHANNEL_MODULE(JGroupsRequirement.CHANNEL_MODULE),
JCHANNEL_CLUSTER(JGroupsRequirement.CHANNEL_CLUSTER),
;
private org.jboss.as.clustering.controller.Capability capablity;
private org.jboss.as.clustering.controller.Capability capability;

Capability(UnaryRequirement requirement) {
this.capablity = new UnaryRequirementCapability(requirement);
this.capability = new UnaryRequirementCapability(requirement);
}

@Override
public org.jboss.as.clustering.controller.Capability getCapability() {
return this.capablity;
return this.capability;
}
}

Expand Down

0 comments on commit 2b0d227

Please sign in to comment.