Skip to content

Commit 25dd5f1

Browse files
committed
Merge branch '3.4.x' into 3.5.x
Closes gh-46263
2 parents 573ad34 + 67de321 commit 25dd5f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildSrc/src/main/java/org/springframework/boot/build/antora/GenerateAntoraPlaybook.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ private Provider<String> configurePlaybookOutputDir(Project project) {
111111
return project.provider(() -> {
112112
Path playbookDir = toRealPath(getOutputFile().get().getAsFile().toPath()).getParent();
113113
Path outputDir = toRealPath(siteDirectory);
114-
return "." + File.separator + playbookDir.relativize(outputDir).toString();
114+
return "." + File.separator + playbookDir.relativize(outputDir);
115115
});
116116
}
117117

spring-boot-project/spring-boot-test-autoconfigure/src/dockerTest/java/org/springframework/boot/test/autoconfigure/jdbc/AutoConfigureTestDatabaseDockerComposeIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public void initialize(ConfigurableApplicationContext applicationContext) {
8383
Files.writeString(composeFile, composeFileContent);
8484
TestPropertySourceUtils.addInlinedPropertiesToEnvironment(applicationContext,
8585
"spring.docker.compose.skip.in-tests=false", "spring.docker.compose.stop.command=down",
86-
"spring.docker.compose.file=" + composeFile.toAbsolutePath().toString());
86+
"spring.docker.compose.file=" + composeFile.toAbsolutePath());
8787
}
8888
catch (IOException ex) {
8989
throw new UncheckedIOException(ex);

0 commit comments

Comments
 (0)