Back to Intellij Community

DelegatesTo

plugins/groovy/groovy-psi/resources/inspectionDescriptions/DelegatesTo.html

2025.3-rc-2286 B
Original Source

Reports unused @DelegatesTo.Target annotations and unresolved @DelegatedTo.target annotation attribute values.

Example:

// unused target 't1' and unresolved target 't2'
  def m(
      @DelegatesTo.Target('t1') target,
      @DelegatesTo(target = 't2') Closure c
  ) {}