vote up 33 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

1 2 next
vote up 96 vote down check

I always delete old code - I don't like messy code.

There should always be a record with source control.

link|flag
1  
Technically, you don't have to know what was once there. You can go back and check what was there 1 version at a time. Though, I agree that it cannot be searched effectively. – Sev Jun 19 at 6:45
show 2 more comments
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
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 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 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 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 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 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 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

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 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 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 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 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 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

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 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

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'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 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 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 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 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 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 2 vote down

Comments written in English (or whatever language the development team communicates in) or pseudo code and version control history would always be my priority over leaving old, unused code behind, in or out of comments. There are, however, four situations that I can think of when I might leave the code in.

  1. If I expect part of the code to have use in the very near future.
  2. If there was no version control for the file, and there was a desire for the history.
  3. If I wasn't confident the code was obsolete, and needed to confirm this but was unable to talk with those who might know right away.
  4. The code is "obsolete" because it was removed due to QA constraints or market research concerns, but I was confident it would work properly and provide benefit if enabled.

In all of these situations, I'd make sure to add English comments with the obsolete code, and be sure the version control logs also explain why it is still there but not in use.

link|flag
vote up 1 vote down

I delete it: Keeping the history is the task of the source code control system!

There may be one exception to this rule: if the code is very complex, and an simpler solution may be obvious, I may leave the old code (if it is terse) to demonstrate what does not work!

link|flag
vote up 0 vote down

Well, on the mainframe, we don't have those fancy things called classes.... Or at least not in the version of cobol we use. But, as for commenting code rather than just deleting it, I usually delete it, but then we also have version control software that keeps a copy of each change, back 10 years or so...

link|flag
vote up 3 vote down

A while ago I worked for a pretty big project that didn't use sourcecontrol. I tried, several times, to introduce source control, but it didn't happen until (finally) the software was delivered to the client, taken under maintenance by our company, and the client demanded source control.

Anyway, since there was no source control, nobody dared throw complicated code away. And it was terrible -- in some modules, over half the code was commented out. Worse, they were all block comments, so when grepping through the code for some string, you could find a lot of code that would turn out to be in some long comment.

Conclusion: throw unused code away even when there is no source control system -- if you accidentally thow away something valuable, writing it again will lead to less loss of resources than keeping loads of garbage code.

link|flag
vote up 0 vote down

Further to the answers here. If the code is no longer useful, then definitely delete it. BUT, sometimes it can be useful to keep old code as a reminder of "how not to do it", or just useful reference information. If you do decide to comment out old code, ALWAYS make sure you add a comment explaining why it is commented out.

link|flag
vote up 0 vote down

If I'm working in Visual Studio and it's a temporary change (i.e. I'm trying a new version), I keep the old one untill I'm happy (cause I don't have SVN yet).

In Netbeans, however, where I do have SVN built in and a remote SVN server to work with, I don't bother. I just restore from previous checkins if I have to. Having source control een for hobby projects, works wonders.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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