Tracking Refactorings in a Bug Database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:56:19Z http://stackoverflow.com/feeds/question/54264 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database 3 Tracking Refactorings in a Bug Database Kristopher Johnson 2008-09-10T14:49:45Z 2008-09-10T16:05:41Z <p>Let's say you work someplace where every change to source code must be associated with a bug-report or feature-request, and there is no way to get that policy reformed. In such an environment, what is the best way to deal with code refactorings (that is, changes that improve the code but do not fix a bug or add a feature)?</p> <ul> <li>Write up a bug-report and associate the refactoring with it.</li> <li>Write up a feature-request and associate the refactoring with it.</li> <li>Sneak in the refactorings while working on code that is associated with a bug-report/feature-request.</li> <li>Just don't do any refactoring.</li> <li>Other</li> </ul> <p>Note that all bug reports and feature descriptions will be visible to managers and customers.</p> http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database/54276#54276 6 Answer by Outlaw Programmer for Tracking Refactorings in a Bug Database Outlaw Programmer 2008-09-10T14:53:43Z 2008-09-10T14:53:43Z <p>I vote for the "sneak in refactorings" approach, which is, I believe, the way refactoring is meant to be done in the first place. It's probably a bad idea to refactor just for the sake of "cleaning up the code." This means that you're making changes for no real reason. Refactoring is, by definition, modifying the without the intent of fixing bugs or adding features. If you're following the KISS principle, any new feature is going to need at least some refactoring because you're not really thinking about how to make the most extensible system possible the first time around.</p> http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database/54283#54283 2 Answer by ColinYounger for Tracking Refactorings in a Bug Database ColinYounger 2008-09-10T14:56:08Z 2008-09-10T15:15:42Z <p>The way we work it is: There must be a good reason to refactor the code, otherwise why?</p> <p>If the reason is to allow another feature to use the same code, associate the changes with the other feature's request.</p> <p>If it's to make something faster, create a feature request for faster 'xyz' and associate the changes with that - then the customers see you're improving the product.</p> <p>If it's to design out a bug, log the bug.</p> <p>It's worth noting that in my environment, the policy cannot be enforced. But clever managers can get reports of changes and if they don't have a bug\request reference in the commit text it's followed up.</p> http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database/54291#54291 0 Answer by GateKiller for Tracking Refactorings in a Bug Database GateKiller 2008-09-10T14:59:37Z 2008-09-10T14:59:37Z <p>Lets have a look at each option:</p> <ul> <li>Write up a bug-report and associate the refactoring with it.</li> </ul> <p>If you feel that, in your opinion, the original code poses a security risk or potential for crashing or instability. Write a small bug report outlining the danger, and then fix it.</p> <ul> <li>Write up a feature-request and associate the refactoring with it.</li> </ul> <p>It might be harder to reactor code based on a feature request. But you could use valid feature request to do this which leads me onto the next point...</p> <ul> <li>Sneak in the refactorings while working on code that is associated with a bug-report/feature-request.</li> </ul> <p>If there is a valid bug or feature, state that function x had to be change slightly to fix the bug or add the feature.</p> <ul> <li>Just don't do any refactoring.</li> </ul> <p>This seems to suggest the self development through improving an application is not allowed. Developers should be allowed, if not, encourage to explorer new techniques and technologies.</p> <ul> <li>Other</li> </ul> <p>Perhaps you could discuss your improvement at relevant meeting, giving convincing reasons why the changes should be made. Then at least you will have management backing to the change without having to sneak in the code through another method.</p> http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database/54325#54325 2 Answer by Anthony Williams for Tracking Refactorings in a Bug Database Anthony Williams 2008-09-10T15:09:32Z 2008-09-10T15:09:32Z <p>If you're working on a block of code, in most cases that's because there's either a bug fix or new feature that requires that block of code to change, and the refactoring is either prior to the change in order to make it easier, or after the change to tidy up the result. In either case, you can associate the refactoring with that bug fix or feature.</p> http://stackoverflow.com/questions/54264/tracking-refactorings-in-a-bug-database/54534#54534 0 Answer by Bob Nadler for Tracking Refactorings in a Bug Database Bob Nadler 2008-09-10T16:05:41Z 2008-09-10T16:05:41Z <ul> <li>Other</li> </ul> <p>If you work at a place with that kind of inflexible (and ridiculous) policy, the best solution is to find another job!</p>