Skip to content

Files

Latest commit

 

History

History
18 lines (11 loc) · 342 Bytes

UnnecessaryInheritance.md

File metadata and controls

18 lines (11 loc) · 342 Bytes

Pattern: Unnecessary super type

Issue: -

Description

Inheriting from Any or Object is unnecessary and should simply be removed.

Example of incorrect code:

class A : Any()
class B : Object()

Further Reading