Skip to content

Commit ce4b7b8

Browse files
committed
Fix javadoc build errors affecting JDK 8
1 parent 74bc86c commit ce4b7b8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/main/java/org/archive/format/gzip/GZIPStaticHeader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Brad
1414
*
1515
* +---+---+---+---+---+---+---+---+---+---+
16-
* |ID1|ID2|CM |FLG| MTIME |XFL|OS | (more-->)
16+
* |ID1|ID2|CM |FLG| MTIME |XFL|OS | (more-->)
1717
* +---+---+---+---+---+---+---+---+---+---+
1818
*/
1919
public class GZIPStaticHeader implements GZIPConstants {

src/main/java/org/archive/io/ReplayCharSequence.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public interface ReplayCharSequence extends CharSequence, Closeable {
5959
public long getDecodeExceptionCount();
6060

6161
/**
62-
* Return the first coding-exception encountered, if the count > 0.
62+
* Return the first coding-exception encountered, if the count > 0.
6363
* @return CharacterCodingException
6464
*/
6565
public CharacterCodingException getCodingException();

src/main/java/org/archive/io/arc/ARCWriter.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
* write our own GZIP*Streams, ones that resettable and consious of gzip
8787
* members.
8888
*
89-
* <p>This class will write until we hit >= maxSize. The check is done at
89+
* <p>This class will write until we hit &gt;= maxSize. The check is done at
9090
* record boundary. Records do not span ARC files. We will then close current
9191
* file and open another and then continue writing.
9292
*
@@ -95,9 +95,9 @@
9595
* <a href="http://www.archive.org/web/researcher/tool_documentation.php">alexa
9696
* ARC c-tools</a>:
9797
* <pre>
98-
* % av_procarc hx20040109230030-0.arc.gz | av_ziparc > \
98+
* % av_procarc hx20040109230030-0.arc.gz | av_ziparc &gt; \
9999
* /tmp/hx20040109230030-0.dat.gz
100-
* % av_ripdat /tmp/hx20040109230030-0.dat.gz > /tmp/hx20040109230030-0.cdx
100+
* % av_ripdat /tmp/hx20040109230030-0.dat.gz &gt; /tmp/hx20040109230030-0.cdx
101101
* </pre>
102102
* Examine the produced cdx file to make sure it makes sense. Search
103103
* for 'no-type 0'. If found, then we're opening a gzip record w/o data to

src/main/java/org/archive/util/DateUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ private static String doubleToString(double val, int maxFractionDigits, int minF
557557
* Takes a byte size and formats it for display with 'friendly' units.
558558
* <p>
559559
* This involves converting it to the largest unit
560-
* (of B, KiB, MiB, GiB, TiB) for which the amount will be > 1.
560+
* (of B, KiB, MiB, GiB, TiB) for which the amount will be &gt; 1.
561561
* <p>
562562
* Additionally, at least 2 significant digits are always displayed.
563563
* <p>

0 commit comments

Comments
 (0)