We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7847f4c commit 8d6c1e3Copy full SHA for 8d6c1e3
api-client/src/test/java/de/gesellix/docker/remote/api/testutil/TarUtil.java
@@ -25,7 +25,7 @@ public File unTar(InputStream tar) throws IOException {
25
26
TarArchiveInputStream tis = new TarArchiveInputStream(tar);
27
TarArchiveEntry tarEntry;
28
- while ((tarEntry = tis.getNextTarEntry()) != null) {
+ while ((tarEntry = tis.getNextEntry()) != null) {
29
File outputFile = new File(destDir, tarEntry.getName());
30
if (tarEntry.isDirectory()) {
31
if (!outputFile.exists()) {
0 commit comments