You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/compress/harmony/pack200/Archive.java
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,8 @@
30
30
importjava.util.zip.ZipEntry;
31
31
32
32
/**
33
-
* Archive is the main entry point to pack200 and represents a packed archive. An archive is constructed with either a JarInputStream and an output stream or a
34
-
* JarFile as input and an OutputStream. Options can be set, then {@code pack()} is called, to pack the Jar file into a pack200 archive.
33
+
* Main entry point to pack200 and represents a packed archive. An archive is constructed with either a {@link JarInputStream} and an output stream or a
34
+
* {@link JarFile} as input and an OutputStream. Options can be set, then {@link #pack()} is called, to pack the Jar file into a pack200 archive.
35
35
*/
36
36
publicclassArchive {
37
37
@@ -148,11 +148,11 @@ public int getPackedByteAmount() {
148
148
privatefinalPackingOptionsoptions;
149
149
150
150
/**
151
-
* Creates an Archive with the given input file and a stream for the output
151
+
* Creates an Archive with the given input file and a stream for the output.
152
152
*
153
-
* @param jarFile the input file
154
-
* @param outputStream TODO
155
-
* @param options packing options (if null then defaults are used)
153
+
* @param jarFile the input file.
154
+
* @param outputStream target output stream for the compressed data.
155
+
* @param options packing options (if null then defaults are used).
0 commit comments