Skip to content

Commit 1ac8d99

Browse files
aclfevlsi
authored andcommitted
style: fix lambda argument indentation for checkstyle compliance
Correct indentation of lambda arguments from level 20 to level 16 in ServerVersionCondition to comply with checkstyle Indentation rules. This resolves CI checkstyle failures. Related to #18784
1 parent 3fab588 commit 1ac8d99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testkit/src/main/java/org/postgresql/test/impl/ServerVersionCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class ServerVersionCondition implements ExecutionCondition {
2929
public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
3030
return context.getElement()
3131
.flatMap(element ->
32-
AnnotationUtils.findAnnotation(element, DisabledIfServerVersionBelow.class)
32+
AnnotationUtils.findAnnotation(element, DisabledIfServerVersionBelow.class)
3333
.map(annotation -> ServerVersionCondition.toResult(element, annotation))
3434
).orElse(ENABLED);
3535
}

0 commit comments

Comments
 (0)