Did you ever write a function Foo, use it in your program, then eventually decided to refactor your code and rewrite another function Bar, that is better than Foo, and decided "Oh well, we'll use Bar instead of Foo from now on". But instead of just deleting Foo and replacing every occurence of Foo in the code, you decided to declare Foo as an alias of function Bar ?
Some of you may say : why didn't you just rewrite function Foo and keep its name as Foo, so you don't have to replace every occurence of Foo with Bar ? well, because of the refactoring, Foo isn't an appropriate name anymore, because it does not reflect what the function does, so I decided to not keep its name.
Is this some kind of retrocompatibility ?
EDIT : Suppose
- Foo was written by one of you coworkers
- said coworkers are used to Foo
- you're the moron in the story who thinks is smarter than the others and wrote Bar
@Deprecatedwith a comment saying that Bar is a better choice going forward, and the compiler will mark occurrences of Foo with a warning – Judge Mental May 24 '12 at 16:22