Dead Code Removal
Dead code increases maintenance overhead and confuses developers.
The Removal Protocol
- Verify Unused: Before deleting anything, you must search the entire repository to ensure the symbol or file is truly unused. Do not assume it is dead just because the current file doesn't use it.
- Check for Dynamic Invocation: Be wary of dynamically invoked code (e.g., reflection, dependency injection by string name, ORM mappers). If there is any doubt, leave it alone o
[Description truncada. Veja o README completo no GitHub.]