Merge pull request #45240 from izeye

* pr/45240:
  Restore visibility for DockerComposeProperties.get()

Closes gh-45240
This commit is contained in:
Stéphane Nicoll
2025-04-21 08:37:12 +02:00

View File

@@ -137,7 +137,7 @@ public class DockerComposeProperties {
return this.readiness;
}
public static DockerComposeProperties get(Binder binder) {
static DockerComposeProperties get(Binder binder) {
return binder.bind(NAME, DockerComposeProperties.class).orElseGet(DockerComposeProperties::new);
}