Skip to content

Commit ab62f31

Browse files
committed
MASSEMBLY-754 Fixed NPE when missing folder
1 parent b215734 commit ab62f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codehaus/plexus/archiver/tar/TarArchiver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ protected void cleanUp()
492492
throws IOException
493493
{
494494
super.cleanUp();
495-
tOut.close();
495+
IOUtil.close( tOut );
496496
}
497497

498498
protected void close()

0 commit comments

Comments
 (0)