Skip to content

Commit b2555f6

Browse files
committed
Fix javadoc task failure
1 parent 9d9580b commit b2555f6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/main/java/software/coley/lljzip/format/compression/UnsafeDeflateDecompressor.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
*/
2020
@SuppressWarnings("UnnecessaryLocalVariable")
2121
public class UnsafeDeflateDecompressor implements Decompressor {
22+
/**
23+
* Shared instance.
24+
*/
2225
public static final UnsafeDeflateDecompressor INSTANCE = new UnsafeDeflateDecompressor();
2326
private static final int DEFLATE_CACHE_LIMIT = 64;
2427
private static final Deque<DeflateEntry> DEFLATE_ENTRIES = new ArrayDeque<>();

src/main/java/software/coley/lljzip/format/read/AdaptingZipReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

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

0 commit comments

Comments
 (0)