mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
23 lines
526 B
HTML
23 lines
526 B
HTML
<html>
|
|
<body>
|
|
Reports <code>import</code> statements which are not arranged according to the current code style (see Settings|Editor|Code Style).
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
public class Example {
|
|
List list = new ArrayList();
|
|
}
|
|
</code></pre>
|
|
<p>After the "Optimize Imports" quick fix is applied:
|
|
<pre><code>
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class Example {
|
|
List list = new ArrayList();
|
|
}
|
|
</code></pre>
|
|
</body>
|
|
</html> |