This rule finds code that is never reached. Unused code should be removed to increase readability and avoid confusion.
+Remove any unreachable code.
+In the following example, the final return
statement can never be reached:
The problem can be fixed simply by removing the unreachable code:
+