Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Forbid implicit case fall-through without a comment and enable…
… couple more recommendable error-prone checks (apache#11251) * Forbid implicit case fall-through without a comment In ordinary switch statement, case branches implicitly fall-through to the next one. This is Java's C legacy. Forbid this unless intent is indicated in the code with a comment like `// fall through`. * Enable couple more recommendable error-prone checks
- Loading branch information