@@ -33,7 +33,7 @@ public class ConditionEvaluationResult {
3333 * be {@code null} or <em>blank</em> if the reason is unknown
3434 * @return an enabled {@code ConditionEvaluationResult} with the given reason
3535 * or an <em>empty</em> reason if the reason is unknown
36- * @see StringUtils#isBlank()
36+ * @see StringUtils#isBlank(String )
3737 */
3838 public static ConditionEvaluationResult enabled (String reason ) {
3939 return new ConditionEvaluationResult (true , reason );
@@ -46,7 +46,7 @@ public static ConditionEvaluationResult enabled(String reason) {
4646 * be {@code null} or <em>blank</em> if the reason is unknown
4747 * @return a disabled {@code ConditionEvaluationResult} with the given reason
4848 * or an <em>empty</em> reason if the reason is unknown
49- * @see StringUtils#isBlank()
49+ * @see StringUtils#isBlank(String )
5050 */
5151 public static ConditionEvaluationResult disabled (String reason ) {
5252 return new ConditionEvaluationResult (false , reason );
@@ -66,7 +66,7 @@ public static ConditionEvaluationResult disabled(String reason) {
6666 * @return a disabled {@code ConditionEvaluationResult} with the given reason(s)
6767 * or an <em>empty</em> reason if the reasons are unknown
6868 * @since 5.7
69- * @see StringUtils#isBlank()
69+ * @see StringUtils#isBlank(String )
7070 */
7171 @ API (status = STABLE , since = "5.7" )
7272 public static ConditionEvaluationResult disabled (String reason , String customReason ) {
0 commit comments