Skip to content

Commit aff6755

Browse files
committed
Fix comment
1 parent 9549b59 commit aff6755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static ConditionEvaluationResult disabled(String reason, String customRea
8383

8484
private final Optional<String> reason;
8585

86-
@SuppressWarnings("NullAway") // StringUtils.isBlank() does not yet have a nullability @Contract
86+
@SuppressWarnings("NullAway") // StringUtils.isNotBlank() does not yet have a nullability @Contract
8787
private ConditionEvaluationResult(boolean enabled, String reason) {
8888
this.enabled = enabled;
8989
this.reason = StringUtils.isNotBlank(reason) ? Optional.of(reason.strip()) : Optional.empty();

0 commit comments

Comments
 (0)