mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
16 lines
352 B
HTML
16 lines
352 B
HTML
<html>
|
|
<body>
|
|
<p>Reports fully qualified references, which can be replaced with import.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
def swingBuilder = new groovy.swing.SwingBuilder()
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
import groovy.swing.SwingBuilder
|
|
|
|
def swingBuilder = new SwingBuilder()
|
|
</code></pre>
|
|
</body>
|
|
</html>
|