DEFECT: Commented-out code found in codebase
Category: TECHNICAL-DEBT
Severity: MINOR
Description
Commented-out code violates our mandatory coding standards which explicitly state 'NO commented-out code'.
Files with violations:
src/fortplot_3d_axes.f90:188 - Commented call to draw_3d_axis_ticks_and_labels
src/fortplot.f90:550 - Commented boxplot call
src/fortplot_ascii.f90:140 - Commented if statement
Required Action
Remove all commented-out code. These lines serve no purpose and violate our code cleanliness standards.
Impact
- Violates KISS principle (unnecessary complexity)
- Creates confusion about whether code is needed
- Violates immediate cleanup policy