Skip to content

Commit

Permalink
Add missing Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 6, 2024
1 parent 9f9b3d1 commit c52ce39
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,15 @@ public String getComment() {
return comment;
}

/**
* Gets the compression level.
*
* @return the compression level.
* @see Deflater#NO_COMPRESSION
* @see Deflater#BEST_SPEED
* @see Deflater#DEFAULT_COMPRESSION
* @see Deflater#BEST_COMPRESSION
*/
public int getCompressionLevel() {
return compressionLevel;
}
Expand Down

0 comments on commit c52ce39

Please sign in to comment.