Pattern: Unnecessary super type
Issue: -
Inheriting from Any
or Object
is unnecessary and should simply be removed.
Example of incorrect code:
class A : Any()
class B : Object()
Pattern: Unnecessary super type
Issue: -
Inheriting from Any
or Object
is unnecessary and should simply be removed.
Example of incorrect code:
class A : Any()
class B : Object()