Obsolete Comment

Outdated comments are bad; ones that contain misleading/incorrect information make your code worse

/* 
 * This comment states the function does thing 1
 * but it actually now does thing 2:
 *
 *    This function does thing 1 
 */
public void doThing2() {
...
}



bj 2019-09-22