]
Kabir Khan updated WFLY-2750:
-----------------------------
Fix Version/s: 9.0.0.Final
Missing break for CommonIronJacamarParser.java
----------------------------------------------
Key: WFLY-2750
URL:
https://issues.jboss.org/browse/WFLY-2750
Project: WildFly
Issue Type: Bug
Components: JCA
Reporter: Rostislav Svoboda
Assignee: Rostislav Svoboda
Fix For: 9.0.0.Final
https://github.com/wildfly/wildfly/blob/master/connector/src/main/java/or...
unterminated case for SHARABLE:
{code}
case USE_CCM: {
USE_CCM.parseAndSetParameter(value, connectionDefinitionNode,
reader);
break;
}
case SHARABLE: {
SHARABLE.parseAndSetParameter(value, connectionDefinitionNode,
reader);
}
case ENLISTMENT: {
ENLISTMENT.parseAndSetParameter(value, connectionDefinitionNode,
reader);
break;
}
{code}