mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
409 B
HTML
20 lines
409 B
HTML
<html>
|
|
<body>
|
|
Reports annotation parameters that are assigned to their <code>default</code> value.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
@interface Test {
|
|
Class<?> expected() default Throwable.class;
|
|
}
|
|
|
|
@Test(expected = Throwable.class)
|
|
void testSmth() {}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
@Test()
|
|
void testSmth() {}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |