Ok, any developer that’s been working for more than a few years has probably snickered at the business analysts who check word docs into version control with tags such as use_case_012106.doc, or use_case_12252006_old.doc…
It’s obvious that they just don’t understand that version control is already keeping track of that for them.
But today, while painfully trying to get my build scripts to deploy a war to websphere, I actually found a developer that had checked in a java file into VSS:
HMigrator.java
and
HMigrator_old.java
I never thought I’d see that among supposedly senior developers… and just had to share, out of sheer frustration!
One Comment
That rules.
So does this:
/**
* @deprecated Use getDescription()
* @return String
*/
public String getDescriptionOld() {
return description;
}
Post a Comment