vote up 34 vote down star
3

When you need to obsolete a section of code (say either the business rules changed, or the old system has been reworked to use a new framework or something) do you delete it from the file or do you comment it out and then put in the new functionality? If you comment it out, do you leave a note stating why it was removed and what it was originally intended to do?

I ask mainly because I've done a lot of contract work for different places over the years and sometimes it's like excavating a tomb to find the actual code that is still being used. Why comment it out and leave it in the file if source control has a record of what used to be there? If you comment out a method do you also comment out/delete any methods that were exclusively used by that method?

What do you think the best practices for this should be?

flag
1  
Wow, seems people are unanimously against leaving commented code lying around. So who keeps doing it, then? – Don Kirkby Sep 23 '08 at 20:32
1  
Old developers who lived before source code control was popular – RichH Sep 23 '08 at 22:06
1  
And people who just don't "get" version control... which there are FAR TOO MANY! – John Gardner Sep 23 '08 at 22:48

53 Answers

prev 1 2
vote up 1 vote down

If you're using a version control system try to keep the code cleaner as possible, the version control would have to keep your history of changes. But if you don't use version control, the best I think (only did once, I always use version control) is to leave a comment but not the code, you have to know that a certain block of code was erase, but not need to keep it; but always is a catch, do it only and only if you know you'll never need that code.

link|flag
vote up 0 vote down

I do when writing an emergency production patch, but generally remove it when I have time to properly test my new code.

link|flag
vote up 0 vote down

If you're not using Source Control, start.

If you can't start and you need to comment out the code for some reason, you better maintain it when you maintain the non-commented out code too. I'd say the odds of that are low so the utility of the commented out code decreases exponentially over time. Delete it.

link|flag
vote up 0 vote down

I believe comments in code to be excess noise in general. Like you said digging code out of source control can be tedious, but probably far less dangerous or annoying than useless commented code littering through out the actual code base, with no one around who understands why it is there or why it hasn't been removed.

Of course there are always pragmatic reasons why you may have commented out code, and every rule should be overlooked when the right situation arises. For example it may be more work to remove code completely if it just doesn't make a release, than to just comment it out knowing full well that it will be used the following day/week etc

link|flag
vote up 3 vote down

I usually remove the extraneous code after a period of time--usually throughout testing, but removed before delivery. This makes it easy to grok history of a chunk of code. Depending on how much is changed, looking at the source-control history may not be immediately helpful. If functions were renamed, re-ordered, etc it may take a lot of effort to map between the old code and the new code...

Leaving the commented code in, temporarily, makes browsing the repo history a little easier. You can also use code folding/regions/etc to make this a little cleaner--and since its temporary, it avoids those religious arguments about whether code folding directives are good or evil.

If I want to remove it immediately, I usually comment out the code, put a note, check-in, delete code, then check-in again. Again--this is mostly to retain a clear history of what the "new" code replaces.

link|flag
vote up 0 vote down

I've actually worked on some applications where old code as not removed, but instead just commented out and I found that it tended to actually increase the time to implement bug fixes and new features because you hand to dig through all of the text to find what to edit. In some cases having the old code in place was useful in debugging because you were able to see how a thought process changed; however, I personally find it a bit more useful if there is a comment at the top of the file discussing revisions that were done along with when they were done and the revision number if it is available.

Granted most modern IDEs do allow for code folding which can get the commented code out of the way, it just seems easier to look at the current code and compare it against the old code in context from source control history than trying to piece everything together on your own.

link|flag
vote up 0 vote down

I aggree with you. If you are using a version control system, there is no need to leave in commented code. Always make the code as clean and simple and easy to understand as possible. Lots of old unused commented out code is a lot of extra noise.

There are times to maybe leave the commented code in, such as if your testing a bug fix, but long term get rid of it.

link|flag
vote up 0 vote down

I'll leave it in while still testing, but then delete it as I come across it later.

Experimented with immediate deletion, but reverting from the repository is MUCH slower than simply uncommenting again. Deleting costs the same amount of time whenever it's done. The source control system does give the safety net/confidence needed to pull this off though (you have to be perfectly confident that you can delete any commented code).

link|flag
vote up 0 vote down

Source code control makes this a non-issue; commented out code is dead code, and dead code should be dropped. If it turns out that this was a mistake, revert to a previous version and fix it up from there.

I find that random commented-out bits of code are often a symptom of programming by coincidence, which I don't like.

link|flag
vote up 6 vote down

I only do this very, very rarely. Occasionally, there's a clever fix or workaround where the original solution, which you'd think would work, just didn't. If the original code is small, say less than 10 lines, I'll leave it there along with an explanation why we are doing things the way we now do.

In nearly all other cases, this is the job of source control. Use it. Love it. Clean up the junk.

link|flag
vote up 0 vote down

Always delete old code. If you're using a decent SCM tool then it's simple to view changes. My favourite is Perforce which offers a fantastic time-lapse view of changes.

link|flag
vote up 0 vote down

I tend to think that the source control system is the right place for viewing historic code changes, meaning that historic code should be deleted from the source files and appropriate comments should be added to the checkin.

That said, there seem to be a number of dev shops with pretty shoddy source control practices and I can imagine people arguing that in such environments historic code should be commented out. However, best practices in such environments would be to sort out their source control system, so it could be said commenting out historic code is never best practice but sometimes an excuse for bad practices.

link|flag
vote up 6 vote down

We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, Then check it in, it is saved now and forever. If you want to replace it with a new version delete it,

  • The old version will be around if you need it.
  • Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code.
  • After a few changes to the original code, the commented out version is way out of date

I once saw a function that had over a hundred lines of commented out code, when I removed the commented out code, it was only 2 lines long.

link|flag
vote up 12 vote down

Delete delete delete delete. You are changing the code for a reason (hopefully a good one), there is no need to leave a history inside of the code file of what it used to do. People have a hard enough time figure out what it is currently doing!

link|flag
vote up 0 vote down

The official answer I get is to remove it.

The reason you'd leave the old code in place and commented out is generally because you want to be lazy and copy/paste variables names, or see how you did it before, or just in case you need to switch back to the older way of doing it someday, etc.

I didn't say they were good reasons.

link|flag
vote up 0 vote down

I take out the code and comment on it when I check it in. That's what your source-control system's good for. You can always do a look-up on that section later.

link|flag
vote up 0 vote down

I delete it. It's in source control, and I comment on all check-ins so that later I could refer to it's history.

link|flag
vote up 1 vote down

Funny you ask that; I just finished removing some obsolete code (and comments!). I find it quite pointless given source control.

Perhaps it is useful to detect something like yo-yo coding where you're changing one piece of code back and forth to meet different requirements...but I rely on test cases for that. If someone wants something to work some way, add it in the test case and explain why the test case exists. I don't understand why folks would use commented-out-old-code for that.

link|flag
vote up 2 vote down

Absolutely, the code should be deleted instead of commented-out. Revision control is where historical code belongs. Code is insanely unreadable when (for instance) every third line is commented out.

link|flag
vote up 2 vote down

Absolutely not. Commented out code is deleted code. Source control has the file's history as well as the comments to the code changes (why this particular chunk was deleted).

link|flag
vote up 1 vote down

You're about to hear the sound of 10,000 developers admonishing you to use source control.

I worked as a FoxPro programmer for 10 years and comments with notes were good enough.

link|flag
vote up 13 vote down

I prefer to delete it. That way, it doesn't clutter up the current codefile, and anyone who cares can look it up in version control.

link|flag
vote up 0 vote down

if your files are under source control, I would say never leave the commented-out code in there.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.