Back to Intellij Community

ChangeToMethod

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

2025.3-rc-2149 B
Original Source

Reports operator invocations that can be replaced with method calls.

Example:

a + b

After the quick-fix is applied:

a.plus(b)