You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments