Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 350 Bytes

DeadCode.md

File metadata and controls

11 lines (6 loc) · 350 Bytes

Pattern: Unreachable code

Issue: -

Description

Dead code appears after a return statement or an exception is thrown. If code appears after one of these statements then it will never be executed and can be safely deleted.

Further Reading