Polishing

This commit is contained in:
Sam Brannen 2023-11-01 16:23:18 +01:00
parent 2a5653c7d6
commit a5841fede5
1 changed files with 3 additions and 3 deletions

View File

@ -79,11 +79,11 @@ abstract class AbstractExpressionEvaluatingCondition implements ExecutionConditi
* @param loadContextExtractor a function that extracts the {@code loadContext}
* flag from the annotation
* @param enabledOnTrue indicates whether the returned {@code ConditionEvaluationResult}
* should be {@link ConditionEvaluationResult#enabled(String)} enabled} if the expression
* should be {@link ConditionEvaluationResult#enabled(String) enabled} if the expression
* evaluates to {@code true}
* @param context the {@code ExtensionContext}
* @return {@link ConditionEvaluationResult#enabled(String)} enabled} if the container
* or test should be enabled; otherwise {@link ConditionEvaluationResult#disabled disabled}
* @return {@link ConditionEvaluationResult#enabled(String) enabled} if the container
* or test should be enabled; otherwise {@link ConditionEvaluationResult#disabled(String) disabled}
*/
protected <A extends Annotation> ConditionEvaluationResult evaluateAnnotation(Class<A> annotationType,
Function<A, String> expressionExtractor, Function<A, String> reasonExtractor,