mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
308 B
HTML
14 lines
308 B
HTML
<html>
|
|
<body>
|
|
Reports annotations in a shorthand form and suggests rewriting them in a normal form with an attribute name.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
@SuppressWarnings("foo")
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
@SuppressWarnings(value = "foo")
|
|
</code></pre>
|
|
</body>
|
|
</html>
|