Pattern: Duplicate break
Issue: -
Consecutive return
, break
, continue
, goto
or throw
statements are unnecessary. The second statement can never be executed, and so should be removed.
Pattern: Duplicate break
Issue: -
Consecutive return
, break
, continue
, goto
or throw
statements are unnecessary. The second statement can never be executed, and so should be removed.