We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b66a7 commit c11c6fbCopy full SHA for c11c6fb
grails-plugin-validation/src/main/groovy/grails/validation/Validateable.groovy
@@ -79,8 +79,9 @@ trait Validateable {
79
}
80
81
boolean validate() {
82
- validate null
+ validate null, null, null
83
84
+
85
boolean validate(Closure<?>... adHocConstraintsClosures) {
86
validate(null, null, adHocConstraintsClosures)
87
@@ -94,7 +95,7 @@ trait Validateable {
94
95
96
97
boolean validate(List fieldsToValidate) {
- validate fieldsToValidate, null
98
+ validate fieldsToValidate, null, null
99
100
101
boolean validate(List fieldsToValidate, Closure<?>... adHocConstraintsClosures) {
0 commit comments