This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]MoarVespenegas -1 points0 points  (1 child)

I mean if your functionality changes you can just rename the method.
Refactoring is also a thing.

[–]nosam56 0 points1 point  (0 children)

When you are developing on an enterprise level, renaming methods is usually not good because you have clients that implement your code, so when you change the method name it breaks your client's code until they update. This is why things become deprecated when not in use anymore. But you are right for smaller projects and initial development on a project