Skip to content

Commit 59d562e

Browse files
committed
Fix Javadoc references
See: #4715 (cherry picked from commit 61894ae)
1 parent f4c202b commit 59d562e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

junit-jupiter-api/src/main/java/org/junit/jupiter/api/extension/ConditionEvaluationResult.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)