Reminds me, couple of comments that I saw in production few years ago
// 'programmer name' commented here because it was giving error
// incorrect code goes here
One more,
// Added by 'programmer name'
This comment is particularly annoying, because the programmer has cared enough to say who added the code, but not what the code does or it's purpose
try
{
DoStuff();
}
catch(Excpetion ex)
{
// This should never happen, but if it happens
// we need to use Exception logging mechanism
// As of now, we do nothing
}
and 3 years later, the catch block continues to live