Files
openide/plugins/kotlin/code-insight/descriptions/resources-en/inspectionDescriptions/RedundantConstructorKeyword.html
Alexey Belkov 41ecf02661 [kotlin] Proofread RedundantConstructorKeyword inspection description
GitOrigin-RevId: a2bc966a5534e370099b23319f64df825dead6fb
2023-08-23 17:45:28 +00:00

14 lines
293 B
HTML

<html>
<body>
<p>Reports a redundant 'constructor' keyword on primary constructors.</p>
<p><b>Example:</b></p>
<pre><code>
class Foo <b>constructor</b>(x: Int, y: Int)
</code></pre>
<p>After the quick-fix is applied:</p>
<pre><code>
class Foo(x: Int, y: Int)
</code></pre>
</body>
</html>