Skip to content

Commit b0efbb4

Browse files
author
Marcus Linke
committed
Merge branch 'master' of https://github.com/s-webb/docker-java into s-webb-master
2 parents 37bcad6 + 1584e0d commit b0efbb4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/com/github/dockerjava/core/dockerfile/Dockerfile.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@ public int read() throws IOException {
142142
return tarInputStream.read();
143143
}
144144

145+
@Override
146+
public int read(byte [] buff, int offset, int len) throws IOException {
147+
return tarInputStream.read(buff, offset, len);
148+
}
149+
145150
@Override
146151
public void close() throws IOException {
147152
IOUtils.closeQuietly(tarInputStream);

0 commit comments

Comments
 (0)