mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
14 lines
293 B
HTML
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>
|