show/hide this revision's text 5 Minor edit: grammar/spelling/case/punctation/etc.

Commented out code. I realize that this one is a lot of people favorite thing to do, but it is always wrong.

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.

Sometimes we comment out code during debugging and development. This is okOK, just make sure to delete it before it is checked in.

show/hide this revision's text 4 Match formatting of other answers?

Commented out code. I realize that this one is a lot of people favorite thing to do, but it is always wrong.

Commented out code

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.

Sometimes we comment out code during debugging and development. This is ok, just make sure to delete it before it is checked in.

show/hide this revision's text 3 corrected spelling

I realize that this one is a lot of people favorite thing to do, but it is always wrong.

Commented out code

We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, Then 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.

Sometimes we comment out code during debugging and development. This is ok, just make sure to delete it before it is checked in.

show/hide this revision's text 2 deleted 7 characters in body
show/hide this revision's text 1
    Post Made Community Wiki by Community