mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
ChangeToMethod ChangeToOperator ClashingGetters ClashingTraitMethods DelegatesTo GrAnnotationReferencingUnknownIdentifiers GitOrigin-RevId: fd1d8b8e6e6615f1ecc930b85eb77b5f20a7f28a
14 lines
367 B
HTML
14 lines
367 B
HTML
<html>
|
|
<body>
|
|
Reports unused <code>@DelegatesTo.Target</code> annotations and unresolved <code>@DelegatedTo.target</code> annotation attribute values.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
// unused target 't1' and unresolved target 't2'
|
|
def m(
|
|
@DelegatesTo.Target('t1') target,
|
|
@DelegatesTo(target = 't2') Closure c
|
|
) {}
|
|
</code></pre>
|
|
</body>
|
|
</html>
|