Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldaustin committed Jun 25, 2019
1 parent f93ffe0 commit e655d2b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public class ZlibDeflate {
* Compress the byte[] using ZLIB deflate decompression.
*
* @param bytes The bytes to decompress
* @param expectedSize The expected size of the decompressed byte[].
*
* @return The decompressed bytes.
* @throws ImageReadException if the bytes could not be decompressed.
Expand All @@ -65,7 +66,7 @@ public static byte[] decompress(final byte[] bytes, final int expectedSize) thro
* @param bytes The bytes to compress
*
* @return The compressed bytes.
* @throws ImageReadException if the bytes could not be compressed.
* @throws ImageWriteException if the bytes could not be compressed.
* @see DeflaterOutputStream
*/
public static byte[] compress(final byte[] bytes) throws ImageWriteException {
Expand Down

0 comments on commit e655d2b

Please sign in to comment.