Restore visibility for DockerComposeProperties.get()

See gh-45240

Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
Johnny Lim
2025-04-20 22:37:27 +09:00
committed by Stéphane Nicoll
parent 238d83b318
commit 69f0b7a1e0

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);
}