[
https://issues.apache.org/jira/browse/GROOVY-6245?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15410482#comment-15410482
]
Paul King edited comment on GROOVY-6245 at 8/6/16 5:04 AM:
-----------------------------------------------------------
Proposed PR merged and ported back to the 2_4_X branch
was (Author: paulk):
Proposed PR merged
> @EqualsAndHashCode assumes get style getters for boolean properties
> -------------------------------------------------------------------
>
> Key: GROOVY-6245
> URL: https://issues.apache.org/jira/browse/GROOVY-6245
> Project: Groovy
> Issue Type: Bug
> Components: xforms
> Affects Versions: 2.1.6, 2.2.0-beta-1, 2.4.5
> Reporter: Marcin Erdmann
> Assignee: Paul King
> Fix For: 2.4.8
>
>
> It basically means that equals() and hashCode() generated using
> @EqualsAsHashCode will throw MissingMethodException if you define only is
> style getters for a glass. I expected the following to pass but it doesn't:
> {code}
> import groovy.transform.EqualsAndHashCode
> @EqualsAndHashCode
> class A {
> boolean a
>
> boolean isA() { a }
> }
>
> def a1 = new A(a: true)
> def a2 = new A(a: true)
> assert a1.a
> assert a1.hashCode()
> assert a1 == a2
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)