Skip to content

Commit

Permalink
try to make sense in javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
bodewig committed Mar 26, 2017
1 parent d01a053 commit 785233a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ public Parameters(BlockSize blockSize) {
* otherwise uses the defaults of enabled content checksum,
* disabled block checksums and independent blocks.
* @param blockSize the size of a single block.
* @param lz77params lz77 parameters parameters used to
* fine-tune compression, in particular to balance compression
* ratio vs compression speed.
* @param lz77params parameters used to fine-tune compression,
* in particular to balance compression ratio vs compression
* speed.
*/
public Parameters(BlockSize blockSize,
org.apache.commons.compress.compressors.lz77support.Parameters lz77params) {
Expand Down Expand Up @@ -149,9 +149,9 @@ public Parameters(BlockSize blockSize, boolean withContentChecksum, boolean with
* the content of a previous block. Enabling this may improve
* compression ratio but makes it impossible to decompress the
* output in parallel.
* @param lz77params lz77 parameters parameters used to
* fine-tune compression, in particular to balance compression
* ratio vs compression speed.
* @param lz77params parameters used to fine-tune compression,
* in particular to balance compression ratio vs compression
* speed.
*/
public Parameters(BlockSize blockSize, boolean withContentChecksum, boolean withBlockChecksum,
boolean withBlockDependency,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ public FramedSnappyCompressorOutputStream(final OutputStream out) throws IOExcep
* Constructs a new output stream that compresses
* snappy-framed-compressed data to the specified output stream.
* @param out the OutputStream to which to write the compressed data
* @param params lz77 parameters parameters used to fine-tune
* compression, in particular to balance compression ratio vs
* compression speed.
* @param params parameters used to fine-tune compression, in
* particular to balance compression ratio vs compression speed.
* @throws IOException if writing the signature fails
*/
public FramedSnappyCompressorOutputStream(final OutputStream out, Parameters params) throws IOException {
Expand Down

0 comments on commit 785233a

Please sign in to comment.