show/hide this revision's text 3 added 5 characters in body

Martin Fowler's take on refactoringthe issue:

Its essence is applying a series of small behavior-preserving transformations, each of which "too small to be worth doing". However the cumulative effect of each of these transformations is quite significant. By doing them in small steps you reduce the risk of introducing errors. You also avoid having the system broken while you are carrying out the restructuring - which allows you to gradually refactor a system over an extended period of time. - Martin Fowler

So when you are changing huge chunks of code at a time, I wouldn't really call that a true refactoring. More like totally rewriting particular code segments. The changes should be gradual and "almost not worth doing". After time you'll notice their cumulative effect.

I've heard a definition for "legacy code" is code without unit tests. If you are working on code without unit tests than I would suggest writing tests before making significant changes. If you have unit tests in place than you can refactor without fear of breaking that awful code because you have your unit tests to back you up and ensure everything is still functional.

show/hide this revision's text 2 added 5 characters in body

Martin Fowler on refactoring:

Its essence is applying a series of small behavior-preserving transformations, each of which "too small to be worth doing". However the cumulative effect of each of these transformations is quite significant. By doing them in small steps you reduce the risk of introducing errors. You also avoid having the system broken while you are carrying out the restructuring - which allows you to gradually refactor a system over an extended period of time. - Martin Fowler

So when you are changing huge chunks of code at a time, I wouldn't really call that a true refactoring. More like massive totally rewriting of particular code segments. The changes should be gradual and "almost not worth doing". After time you'll notice their cumlative cumulative effect.

I've heard a definition for "legacy code" is code without unit tests. If you are working on code without unit tests than I would suggest writing tests before making significant changes. If you have unit tests in place than you can refactor without fear of breaking that awful code because you have your unit tests to back you up and ensure everything is still functional.

    Post Made Community Wiki by Community
show/hide this revision's text 1