There was an error while loading. Please reload this page.
1 parent 95a4404 commit dda852bCopy full SHA for dda852b
1 file changed
src/main/java/it/aboutbits/springboot/testing/validation/rule/EmailRule.java
@@ -10,10 +10,8 @@
10
@SuppressWarnings("unchecked")
11
@NullMarked
12
public interface EmailRule<V extends BaseRuleBuilder<?>> extends ValidationRulesData {
13
- /**
14
- * Bean validation considers `null` and blank values to be valid e-mail addresses.
15
- * Combine this rule with `notNull` or `notBlank` if the property must be present.
16
- */
+ /// Bean validation considers `null` and blank values to be valid e-mail addresses.
+ /// Combine this rule with `notNull` or `notBlank` if the property must be present.
17
@CheckReturnValue
18
default V email(String property) {
19
addRule(
0 commit comments