mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
21 lines
502 B
HTML
21 lines
502 B
HTML
<html>
|
|
<body>
|
|
Reports ordinary classes, which can be converted into implicitly declared classes
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
public class Sample {
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, world!");
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2024.1</small></p>
|
|
</body>
|
|
</html> |