Lazy Class
A lazy class is a class that does too little, often indicating that its responsibilities could be better handled by another class or merged with another class.
Code :
![](img/lazyClass-before.png)
Treatment:
Merge the lazy class with another class.
![](img/lazyClass-after.png)
Lazy Class
A lazy class is a class that does too little, often indicating that its responsibilities could be better handled by another class or merged with another class.
Code :
Treatment:
Merge the lazy class with another class.