File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
main/java/org/codehaus/plexus/archiver/bzip2
test/java/org/codehaus/plexus/archiver/tar Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class BZip2Compressor
35
35
private BZip2CompressorOutputStream zOut ;
36
36
37
37
/**
38
- * perform the GZip compression operation.
38
+ * perform the BZip2 compression operation.
39
39
*/
40
40
public void compress ()
41
41
throws ArchiverException
Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ public void testExtract()
57
57
tarArchiver .setDestFile ( getTestFile ( "target/output/archive.tar" ) );
58
58
tarArchiver .createArchive ();
59
59
60
- BZip2Archiver gzipArchiver = (BZip2Archiver ) lookup ( Archiver .ROLE , "bzip2" );
60
+ BZip2Archiver bzip2Archiver = (BZip2Archiver ) lookup ( Archiver .ROLE , "bzip2" );
61
61
62
- gzipArchiver .setDestFile ( testBZip2File );
63
- gzipArchiver .addFile ( getTestFile ( "target/output/archive.tar" ), "dontcare" );
64
- gzipArchiver .createArchive ();
62
+ bzip2Archiver .setDestFile ( testBZip2File );
63
+ bzip2Archiver .addFile ( getTestFile ( "target/output/archive.tar" ), "dontcare" );
64
+ bzip2Archiver .createArchive ();
65
65
66
66
TarBZip2UnArchiver tarBZip2UnArchiver = (TarBZip2UnArchiver ) lookup ( UnArchiver .ROLE , "tbz2" );
67
67
You can’t perform that action at this time.
0 commit comments