|
Relates :
|
SonarCloud demo instance reports the issue here:
case Op_VectorMaskCmp: {
n->set_req(1, new BinaryNode(n->in(1), n->in(2)));
n->set_req(2, n->in(3));
n->del_req(3);
break;
default: // <----- ERROR
break;
}
"The direct parent of this switch-label is not the body of a switch statement."
This is added by JDK-8223347, and it is an obviously misplaced curly-brace. It is innocious in current code, but may become problematic as more cases are added to the switch.
|