Fix broken references in javadoc

This commit is contained in:
Alex Osborne
2025-04-01 15:59:38 +09:00
parent 7f76f5abd1
commit f956b2ec1f
5 changed files with 4 additions and 13 deletions
@@ -72,10 +72,8 @@ implements Reporter, ProgressStatisticsReporter,
private int serialNumber;
/**
* Each ToeThead has an instance of HttpRecord that gets used
* Each ToeThead has an instance of Recorder that gets used
* over and over by each request.
*
* @see org.archive.util.RecorderMarker
*/
private Recorder httpRecorder = null;
@@ -166,8 +166,6 @@ public class FrontierJournal extends CrawlerJournal {
* recovery log into the frontier as considered included.
*
* @param source recovery log file to use
* @param controller CrawlController of crawl to update
* @param retainFailures whether failure ('Ff') URIs should count as done
* @return number of lines in recovery log (for reference)
* @throws IOException
*/
@@ -235,7 +233,6 @@ public class FrontierJournal extends CrawlerJournal {
* (excepting those the frontier drops as already having been included)
*
* @param source recovery log file to use
* @param controller CrawlController of crawl to update
* @param params Map of options to apply
* @param enough latch signalling 'enough' URIs queued to begin crawling
*/
@@ -1224,10 +1224,6 @@ implements Closeable,
getInactiveQueuesByPrecedence().tailMap(getPrecedenceFloor()));
}
/**
* @param iqueue
* @return
*/
private int tallyInactiveTotals(SortedMap<Integer,Queue<String>> iqueues) {
int inactiveCount = 0;
for(Queue<String> q : iqueues.values()) {
@@ -53,7 +53,7 @@ import java.util.logging.Logger;
* <p>This code creates some fairly large collections (proprotionate in size to
* # discovered URLs) so make sure you allocate
* it a large heap to work in. It also takes a while to process a recover log.
* <p>See {@link #main()} method at end for test/demo code.
* <p>See {@link #main(String[])} method at end for test/demo code.
* @author Mike Schwartz, schwartz at CodeOnTheRoad dot com
*/
public class RecoveryLogMapper {
@@ -409,12 +409,12 @@ public class FetchHTTP extends Processor implements Lifecycle {
return (Boolean) kp.get("sendRange");
}
/**
* Send 'Range' header when a limit ({@link #MAX_LENGTH_BYTES}) on
* Send 'Range' header when a limit ({@link #setMaxLengthBytes(long)}) on
* document size.
* <p>
* Be polite to the HTTP servers and send the 'Range' header, stating that
* you are only interested in the first n bytes. Only pertinent if
* {@link #MAX_LENGTH_BYTES} &gt; 0. Sending the 'Range' header results in a
* {@link #getMaxLengthBytes()} &gt; 0. Sending the 'Range' header results in a
* '206 Partial Content' status response, which is better than just cutting
* the response mid-download. On rare occasion, sending 'Range' will
* generate '416 Request Range Not Satisfiable' response.