Steve Meredith wrote:
> What is the general policy on removing unused obsolete code? I came
> across a function in a .js file which appears to be uncalled. Since I
> have to change that file anyway, I'd like to delete the function while
> I'm in there. Unless there is some policy reason I shouldn't.
Generally, removing code is good. We have CVS to track old versions if
needed so removing dead code is almost always a good thing, decreasing
footprint in memory and on disk and at the same time making the code
easier to maintain.
/Daniel