Skip to content

Commit

Permalink
Fix javadoc task failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Sep 21, 2023
1 parent 9d9580b commit b2555f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
*/
@SuppressWarnings("UnnecessaryLocalVariable")
public class UnsafeDeflateDecompressor implements Decompressor {
/**
* Shared instance.
*/
public static final UnsafeDeflateDecompressor INSTANCE = new UnsafeDeflateDecompressor();
private static final int DEFLATE_CACHE_LIMIT = 64;
private static final Deque<DeflateEntry> DEFLATE_ENTRIES = new ArrayDeque<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/**
* A zip reader implementation delegating all the work to {@link ZipFile}.
* <p/>
* <br>
* This will write temporary files to disk in order to satisfy constructor requirements if you use
* the standard {@link ZipReader} methods. Instead directly call {@link #fill(ZipArchive, File)} or
* {@link #fill(ZipArchive, ZipFile)}.
Expand Down

0 comments on commit b2555f6

Please sign in to comment.