Files
openide/plugins/groovy/groovy-psi/resources/inspectionDescriptions/ClashingGetters.html
Daniil Ovchinnikov 9698ba64a0 [groovy] inspection descriptions
ChangeToMethod
ChangeToOperator
ClashingGetters
ClashingTraitMethods
DelegatesTo
GrAnnotationReferencingUnknownIdentifiers

GitOrigin-RevId: fd1d8b8e6e6615f1ecc930b85eb77b5f20a7f28a
2021-05-31 17:35:52 +00:00

17 lines
343 B
HTML

<html>
<body>
Reports boolean methods which can be accessed via the same property name.
<p>The result of accessing such property might be unexpected.</p>
<p><b>Example:</b></p>
<pre><code>
class X {
boolean isFoo() { true }
boolean getFoo() { false }
}
// getFoo() will be called
new X().foo
</code></pre>
</body>
</html>