Scala

Scala

Made by DeepSource

final modifier is redundant for object SC-R1053

Anti-pattern
Major

A class cannot extend an object thereby making the final modifier redundant. It is therefore recommended that you drop the said modifier.

Bad practice

final object ParentClass

Recommended

object ParentClass