Fixed
Details
Assignee
Hardy FerentschikHardy FerentschikReporter
Oskars VilitisOskars VilitisLabels
Bug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Hardy FerentschikOskars VilitisComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Hardy Ferentschik
Hardy FerentschikReporter
Oskars Vilitis
Oskars VilitisLabels
Bug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Hardy Ferentschik
Oskars Vilitis
Components
Fix versions
Affects versions
Priority
Created September 17, 2014 at 1:14 PM
Updated October 22, 2014 at 2:50 PM
Resolved October 14, 2014 at 11:24 AM
ConstraintLocation was merged in one class in HV-645, but the
hashCode()
andequals()
were not implemented.Due to this, in
ValidatorImpl #929
fails to recognize that two paths that are identical, are equal.
My particular case is using the JSF Mojarra application with latest hibernate-validator, and having a getter in backing bean annotated with some JSR 303 validation annotation.
equals()
andhashCode()
should be added as they were present inBeanConstraintLocation
.Working fine in 5.0.3.Final, for example.