Skip to content

Commit 32fc8fc

Browse files
committed
formatting
1 parent ad0b052 commit 32fc8fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/applications/ApplicationManifestUtilsCommon.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,11 @@ static Map<String, Object> toApplicationYaml(_ApplicationManifestCommon applicat
423423
if (null != disk) {
424424
putIfPresent(yaml, "disk_quota", applicationManifest.getDisk().toString() + "M");
425425
}
426-
putIfPresent(yaml, "docker", applicationManifest.getDocker(), ApplicationManifestUtilsCommon::toDockerYaml);
426+
putIfPresent(
427+
yaml,
428+
"docker",
429+
applicationManifest.getDocker(),
430+
ApplicationManifestUtilsCommon::toDockerYaml);
427431
putIfPresent(yaml, "domains", applicationManifest.getDomains());
428432
putIfPresent(yaml, "env", applicationManifest.getEnvironmentVariables());
429433
putIfPresent(

0 commit comments

Comments
 (0)