Skip to content

Commit dcb0486

Browse files
committed
COMPRESS-433 fix TarArchiveOutputStream javadocs, thanks to Gerard Weatherby
1 parent 78cb9bf commit dcb0486

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public class TarArchiveOutputStream extends ArchiveOutputStream {
116116
private static final int BLOCK_SIZE_UNSPECIFIED = -511;
117117

118118
/**
119-
* Constructor for TarInputStream.
119+
* Constructor for TarArchiveOutputStream.
120120
*
121121
* @param os the output stream to use
122122
*/
@@ -125,7 +125,7 @@ public TarArchiveOutputStream(final OutputStream os) {
125125
}
126126

127127
/**
128-
* Constructor for TarInputStream.
128+
* Constructor for TarArchiveOutputStream.
129129
*
130130
* @param os the output stream to use
131131
* @param encoding name of the encoding to use for file names
@@ -136,7 +136,7 @@ public TarArchiveOutputStream(final OutputStream os, final String encoding) {
136136
}
137137

138138
/**
139-
* Constructor for TarInputStream.
139+
* Constructor for TarArchiveOutputStream.
140140
*
141141
* @param os the output stream to use
142142
* @param blockSize the block size to use. Must be a multiple of 512 bytes.
@@ -147,7 +147,7 @@ public TarArchiveOutputStream(final OutputStream os, final int blockSize) {
147147

148148

149149
/**
150-
* Constructor for TarInputStream.
150+
* Constructor for TarArchiveOutputStream.
151151
*
152152
* @param os the output stream to use
153153
* @param blockSize the block size to use
@@ -162,7 +162,7 @@ public TarArchiveOutputStream(final OutputStream os, final int blockSize,
162162
}
163163

164164
/**
165-
* Constructor for TarInputStream.
165+
* Constructor for TarArchiveOutputStream.
166166
*
167167
* @param os the output stream to use
168168
* @param blockSize the block size to use . Must be a multiple of 512 bytes.
@@ -184,7 +184,7 @@ public TarArchiveOutputStream(final OutputStream os, final int blockSize,
184184
}
185185

186186
/**
187-
* Constructor for TarInputStream.
187+
* Constructor for TarArchiveOutputStream.
188188
*
189189
* @param os the output stream to use
190190
* @param blockSize the block size to use. Must be a multiple of 512 bytes.

0 commit comments

Comments
 (0)