Skip to content

Commit 261264c

Browse files
igor-suhorukovwilkinsona
authored andcommitted
Follow project convention for lambda expression
Closes gh-12527
1 parent 78571f5 commit 261264c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ public void customConfigurerAppliedAfterAutoConfig() {
817817
ContentNegotiationManager manager = context
818818
.getBean(ContentNegotiationManager.class);
819819
assertThat(manager.getStrategies()).anyMatch(
820-
strategy -> WebMvcAutoConfiguration.OptionalPathExtensionContentNegotiationStrategy.class
820+
(strategy) -> WebMvcAutoConfiguration.OptionalPathExtensionContentNegotiationStrategy.class
821821
.isAssignableFrom(strategy.getClass()));
822822
});
823823
}

0 commit comments

Comments
 (0)