The unintended byproducts of refactoring code

Whenever I start on a large refactoring, I need to justify that the exercise is truly worthwhile. Am I objectively and unequivocally improving the understandability of the codebase? If I've finished and the codebase is no more readable or maintainable than it was when I began, I'd argue there were better ways to have used my time.

While the goal might seem obvious, executing on it is often trickier than you'd think.

The two goals of any refactoring

Every refactoring has two goals. The immediate goal is technical. I have something in my code that doesn't feel quite right. Perhaps it's a leaky abstraction, a convoluted dependency, repeated code, or a poorly encapsulated concept that festers throughout the entire application.

I then start laying out the roadmap to get from the code-at-present-moment to the glorious vision of my future code. With the completion of each small step, I re-run my automated tests, commit, then move on. After enough iterations, my plan slowly begins aligning like the pieces on a Tetris board. Eventually, I get to that one final, satisfying refactoring step---the long piece, if you will.

Ahhh....the long-awaited completion of a refactoring
Ahhh....the long-awaited completion of a refactoring

It is at this point where the abscess has been removed and whatever smelled in my codebase no longer smells. I'm ready to pull the fresh new code into our master branch. However, It's easy to fall into the trap of assuming the work is done.

That's because the second goal of a refactoring is the more important one. Has the understandability of the codebase actually improved? If you've achieved the technical goal (the leak is gone!), then, you'd think the codebase would automatically be more readable and maintainable. But, I've found that the tunnel-vision attention required to achieve the technical goal-at-hand can blind me to this second---more critical---goal.

That new refactoring smell

If refactoring is like carpentry, then, accomplishing its technical goals will leave some unwanted byproducts--- discarded pieces left unknowingly on the workbench or a film of sawdust hovering over the entire body of work. In order to make a refactoring truly complete, we need to go back, wipe up our workspace, and apply some polish.

After you celebrate the technical achievements of your newly-updated code, look back at your work holistically to see if you haven't inadvertently introduced some new smells. Make sure you haven't simply traded off old technical debt for new technical debt that you'll need to pay back later.

Code appendages

A refactoring sometimes introduces a bunch of appendages into your code. Are there any no-longer-necessary parameters passed into refactored methods? Are there local variables that are now lying around with nothing specific to do? For instance, if you're moving a piece of functionality out of a method that's doing too many things, it's very likely that the original method now has extra references that just aren't needed anymore.

In the midst of the refactoring, you may be so focused on the extraction, that you forget to clean these bits up. And, by cleaning it up, you may uncover a trail of other code that can go into the trash bin as well. Without this cleanup, you've just added the debt of useless code to your system. That might make the newly refactored codebase just as hard to read.

Misleading names

When you've moved code around your application to get the pieces fitting just right, revisit how you've named the methods, properties, and classes that have undergone the facelift. Do these names still make sense? Do the comments around these methods still apply?

When you're in the same code daily, you might not even notice that the name of a variable or method is misleading because you're so familiar with it. But, to someone coming into the codebase fresh (or, if you happen to take a few weeks off and come back later), misleading names will be detrimental to their understanding of the system.

Uncovering other smells

Often, a refactoring of one thing uncovers other code smells that weren't as obvious before. In a recent refactoring I did, my end goal was to standardize how we handle business-level permissions. The technical goal was to consolidate this code to a single class and move the responsibility of using this class from lower-level classes to higher-level classes. By doing so, I also exposed some places in our code where the same permissions checks were now being done multiple times in these higher-level class.

This redundancy was always there. It just wasn't obvious---it had been hidden because the calls were done lower in the chain by separate methods. Had I stopped the refactoring without taking another look at the code after the fact, I may have missed the opportunity to keep the code DRY. I'd be leaving in (now more obvious) technical debt.

For most of the unintended cruft left after a refactoring, there are tools at our disposal that can help us. As a .NET programmer, a tool like Resharper can detect these common smells so we don't have to go hunting them down ourselves. In the end, a refactoring isn't truly complete until we've re-assessed our work and can objectively say the code is now more understandable.

More from our blog...

We're on a quest to build the best issue tracking, help desk, and project management tool for all kinds of teams.

Subscribe to news and updates and follow us on Twitter.
We will never share your email address with third parties.

Give DoneDone a try today!

No credit card needed. Just sign up for a free trial, invite your team, and start getting things done with DoneDone.