Branch: refs/heads/5.4
Home:
https://github.com/hibernate/hibernate-validator
Commit: be33f5b9ee840136ddb29325c4290f80ea7881c6
https://github.com/hibernate/hibernate-validator/commit/be33f5b9ee840136d...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2017-01-20 (Fri, 20 Jan 2017)
Changed paths:
M
engine/src/main/java/org/hibernate/validator/internal/engine/constraintvalidation/ConstraintValidatorManager.java
Log Message:
-----------
Fix minor typo in a comment
Commit: 721e3e1bf888333510e0a67fcff76f384c51e35c
https://github.com/hibernate/hibernate-validator/commit/721e3e1bf88833351...
Author: Guillaume Smet <guillaume.smet(a)gmail.com>
Date: 2017-01-20 (Fri, 20 Jan 2017)
Changed paths:
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/ConfiguredConstraint.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/CrossParameterConstraintMappingContextImpl.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/PropertyConstraintMappingContextImpl.java
M
engine/src/main/java/org/hibernate/validator/internal/cfg/context/ReturnValueConstraintMappingContextImpl.java
M
engine/src/test/java/org/hibernate/validator/test/cfg/MethodConstraintMappingTest.java
Log Message:
-----------
HV-1220 Make programmatically defined cross parameter constraints on the parameters of a
method returning void work as expected
The location used was the one of a return value so it kinda worked if the
method had parameters as the return value type was Object which is
supported for cross parameter constraints but it failed as long as the
return value type was void.
Compare:
https://github.com/hibernate/hibernate-validator/compare/82c17bb33877...7...