People who worked or working on Legacy code base, mention what are the pain points you have faced while refactoring the code?
For further actions, you may consider blocking this person and/or reporting abuse
People who worked or working on Legacy code base, mention what are the pain points you have faced while refactoring the code?
For further actions, you may consider blocking this person and/or reporting abuse
Hafiz Ammar Saleem -
Michael Tharrington -
Jagroop Singh -
Rose Michelle -
Top comments (7)
1) No tests whatsoever,
2) things added without looking at the broader scope of things,
3) dead code,
4) methods or classes that do multiple things,
5) library or framework features used incorrectly.
1) Lack of readability, inconsistent code
2) Missing tests
3) Unit tests that are not testing the unit or worse, anything
4) Dependency on legacy libraries that are no longer maintained and become a liability
5) Model spread over the whole code base
6) No documentation whatsoever
Hard to follow abstraction. There is lots of legacy code where it's not clear what else will be affected if you make a change. This is especially problematic when code lacks documentation and sufficient test cases.
Functions that are hundreds of lines long.
No coding style or standards followed.
Lack of documentation and not knowing what the dependencies are for the system, not knowing what other service or function might break due to your changes.
But most importantly, the lack of automated testing. It becomes increasingly harder to ship your refactored code when you don't have the confidence that it will not break something else.
Not a lot to add to existing replies, especially re tests but the main problem I find is no one actually knows how it works and most importantly what features are actually used anymore. It feels very frustrating to work with code you dont even know is useful.
Oh boy! And it's very scared to touch those codes.
1) So big Classes, methods
2) tightly coupled methods.
3) no proper indentations.