Skip to main content

Command Palette

Search for a command to run...

Refactoring 030 - Inline Attributes

Avoid accidental redundancy

Published
โ€ข3 min readโ€ขView as Markdown
Refactoring 030 - Inline Attributes
M

Iโ€™m a senior software engineer loving clean code, and declarative designs. S.O.L.I.D. and agile methodologies fan.

TL;DR: Donโ€™t pass attributes your object already owns

Problems Addressed ๐Ÿ˜”

Related Code Smells ๐Ÿ’จ

Steps ๐Ÿ‘ฃ

  1. Identify methods that receive owned attributes
  2. Remove those parameters from the method signature
  3. Replace usage with direct access to the attribute
  4. Rename the method if needed to match the new intention

Sample Code ๐Ÿ’ป

Before ๐Ÿšจ

class Auto {
  constructor(motor) {
    this.motor = motor
  }

  startEngine(motor) {
    motor.ignite()
  }
}

// Usage
const motor = new Motor()
const auto = new Auto(motor)

auto.startEngine(motor)
// Redundant and maybe inconsistent

After ๐Ÿ‘‰

class Auto {
  constructor(motor) {
    this.motor = motor
  }

  // 1. Identify methods that receive owned attributes    
  startEngine() {
    // 2. Remove those parameters from the method signature  
    // 4. Rename the method if needed to match the new intention
    this.motor.ignite()
  }
}

// Adjust usage to call without passing motor
const motor = new Motor()
const auto = new Auto(motor)

// 3. Replace usage with direct access to the attribute  
auto.startEngine() // No parameter needed

Type ๐Ÿ“

[X] Automatic

Safety ๐Ÿ›ก๏ธ

This refactoring is straightforward and safe if you have good test coverage.

Why is the Code Better? โœจ

You remove accidental complexity.

You stop pretending your method needs information from the outside.

You reduce the cognitive load and improve encapsulation.

You clarify which attributes are essential.

You avoid passing the same data through different paths.

You reduce parameter redundancy and simplify method signatures.

You eliminate the possibility of passing inconsistent values since methods now directly access the object's state.

This makes the code more maintainable and reduces the cognitive load when reading method calls.

The methods become more cohesive by relying on their own object's data rather than external parameters.

How Does it Improve the Bijection? ๐Ÿ—บ๏ธ

This refactoring enhances the Bijection by aligning object behavior more closely with real-world entities.

You match the real-world concept: an object uses what it owns.

You improve the anthropomorphism and avoid unrealistic indirection.

You also reduce internal and external coupling.

Limitations โš ๏ธ

This works only if the method always uses the internal attribute.

If you need to inject different versions for testing or variations, consider using dependency injection or a strategy pattern.

Refactor with AI ๐Ÿค–

Suggested Prompt: 1. Identify methods that receive owned attributes 2. Remove those parameters from the method signature 3. Replace usage with direct access to the attribute 4. Rename the method if needed to match the new intention

Tags ๐Ÿท๏ธ

  • Encapsulation

Level ๐Ÿ”‹

[X] Beginner

Related Refactorings ๐Ÿ”„

  • Remove Parameter

  • Introduce Parameter Object

Credits ๐Ÿ™

Image by F. Muhammad on Pixabay


This article is part of the Refactoring Series.