@@ -33,7 +33,7 @@ public class ConditionEvaluationResult {
33
33
* be {@code null} or <em>blank</em> if the reason is unknown
34
34
* @return an enabled {@code ConditionEvaluationResult} with the given reason
35
35
* or an <em>empty</em> reason if the reason is unknown
36
- * @see StringUtils#isBlank()
36
+ * @see StringUtils#isBlank(String )
37
37
*/
38
38
public static ConditionEvaluationResult enabled (String reason ) {
39
39
return new ConditionEvaluationResult (true , reason );
@@ -46,7 +46,7 @@ public static ConditionEvaluationResult enabled(String reason) {
46
46
* be {@code null} or <em>blank</em> if the reason is unknown
47
47
* @return a disabled {@code ConditionEvaluationResult} with the given reason
48
48
* or an <em>empty</em> reason if the reason is unknown
49
- * @see StringUtils#isBlank()
49
+ * @see StringUtils#isBlank(String )
50
50
*/
51
51
public static ConditionEvaluationResult disabled (String reason ) {
52
52
return new ConditionEvaluationResult (false , reason );
@@ -66,7 +66,7 @@ public static ConditionEvaluationResult disabled(String reason) {
66
66
* @return a disabled {@code ConditionEvaluationResult} with the given reason(s)
67
67
* or an <em>empty</em> reason if the reasons are unknown
68
68
* @since 5.7
69
- * @see StringUtils#isBlank()
69
+ * @see StringUtils#isBlank(String )
70
70
*/
71
71
@ API (status = STABLE , since = "5.7" )
72
72
public static ConditionEvaluationResult disabled (String reason , String customReason ) {
0 commit comments