Redundant empty primary constructor
Reports empty primary constructors when they are implicitly available anyway.
A primary constructor is redundant and can be safely omitted when it does not have any annotations or visibility modifiers. Use the 'Remove empty primary constructor' quick-fix to clean up the code.
Examples:
class MyClassA constructor() // redundant, can be replaced with 'class MyClassA'
annotation class MyAnnotation
class MyClassB @MyAnnotation constructor() // required because of annotation
class MyClassC private constructor() // required because of visibility modifier
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Kotlin, @snapshot@ |
Last modified: 13 July 2023