in reply to Commented out production code?
I'm O.K., though, with commenting out blocks of code via any of
Since commented-out blocks of code represent issues that need to be resolved, I've adopted the practice of using a special comment "tag" that's easy to extract mechanically (via, surprise, a Perl script!) so that we can generate reports of where our code issues are during development or maintenance. These tags look like:
The goal is to drive issues to zero at release, but sometimes timeboxes don't permit that. And lack of time is no excuse to lose track of where your issues are.#TBD(dws) version 2.0 of mummble breaks if you do this # $mummble->do_this();
|
|---|