Inspectopedia Help

Feature envy

Reports the Feature Envy code smell. The warning is thrown when a method calls methods on another class three or more times. Calls to library classes, parent classes, contained or containing classes are not counted by this inspection. Feature envy is often an indication of the fact that this functionality is located in a wrong class.

Example:

class JobManager { // Warning: this method calls three methods // of the Job class // It would be better to move this chain of // calls to the Job class itself. void performJob(Job job) { job.beforeStart(); job.process(); job.afterProcessing(); } }

Inspection Details

Available in:

IntelliJ IDEA 2023.3, Qodana for JVM 2023.3

Plugin:

Java, 233.SNAPSHOT

Last modified: 13 July 2023