Skip to content

Commit 2641559

Browse files
committed
Polish contribution
Closes gh-12202
1 parent e2fb093 commit 2641559

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/JavaPluginAction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ private boolean hasConfigurationProcessorOnClasspath(JavaCompile compile) {
166166
Set<File> files = compile.getOptions().getAnnotationProcessorPath() != null
167167
? compile.getOptions().getAnnotationProcessorPath().getFiles()
168168
: compile.getClasspath().getFiles();
169-
return files.stream().map(File::getName)
170-
.anyMatch((name) -> name.startsWith("spring-boot-configuration-processor"));
169+
return files.stream().map(File::getName).anyMatch(
170+
(name) -> name.startsWith("spring-boot-configuration-processor"));
171171
}
172172

173173
private void configureAdditionalMetadataLocations(JavaCompile compile,

0 commit comments

Comments
 (0)