Skip to content

Commit c8a990f

Browse files
committed
Merge branch '3.4.x' into 3.5.x
Closes spring-projectsgh-47703
2 parents 12a0538 + ebf9ab5 commit c8a990f

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/ExportedImageTar.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ static LayerArchiveFactory create(ImageReference reference, Path tarFile) throws
130130
() -> "Exported image '%s' does not contain 'index.json' or 'manifest.json'"
131131
.formatted(reference));
132132
return (index != null) ? new IndexLayerArchiveFactory(tarFile, index)
133-
: new ManifestLayerArchiveFactory(tarFile, manifest);
133+
: new ManifestLayerArchiveFactory(manifest);
134134
}
135135
}
136136

@@ -266,7 +266,7 @@ private static class ManifestLayerArchiveFactory extends LayerArchiveFactory {
266266

267267
private Set<String> layers;
268268

269-
ManifestLayerArchiveFactory(Path tarFile, ImageArchiveManifest manifest) {
269+
ManifestLayerArchiveFactory(ImageArchiveManifest manifest) {
270270
this.layers = manifest.getEntries()
271271
.stream()
272272
.flatMap((entry) -> entry.getLayers().stream())

0 commit comments

Comments
 (0)