3fbf85dc37
So #KT-22971 Fixed
18 lines
320 B
HTML
18 lines
320 B
HTML
<html>
|
|
<body>
|
|
This inspection reports redundant <b>Companion</b> reference, for example:
|
|
<br /><br />
|
|
|
|
<pre>
|
|
<b>class</b> A {
|
|
<b>companion object</b> {
|
|
<b>fun</b> create() = "Hello"
|
|
}
|
|
}
|
|
<b>fun</b> test() {
|
|
<b>val</b> s = A.Companion.create() // redundant Companion reference
|
|
}
|
|
</pre>
|
|
</body>
|
|
</html>
|