Skip to content

Commit 98048ef

Browse files
committed
Merge branch '3.5.x' into 4.0.x
Closes gh-50642
2 parents 9fd93be + cc90a08 commit 98048ef

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

  • buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/io

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/io/InspectedContent.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ private InspectingOutputStream(Inspector[] inspectors) {
148148
this.delegate = new ByteArrayOutputStream();
149149
}
150150

151+
@Override
152+
public void close() throws IOException {
153+
this.delegate.close();
154+
}
155+
151156
@Override
152157
public void write(int b) throws IOException {
153158
this.singleByteBuffer[0] = (byte) (b & 0xFF);

0 commit comments

Comments
 (0)