Scala

Scala

By DeepSource

final modifier is redundant for object SC-R1053

Anti-pattern

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