Skip to content

Commit

Permalink
Elaborate comment again and add final keyword to array
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Nov 10, 2023
1 parent 2f73319 commit cd86f42
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ private record StartEndTimePair (
private final Supplier<Map<LanguageProcessor, List<LanguageProcessor.LanguageProcessingData>>> lpResults;

/**
* This array contains each query execution. The outer array is indexed with the workerID and the inner array
* with the numeric queryID that the query has inside that worker.
* This array contains each query execution of a worker grouped to its queries.
* The outer array is indexed with the workerID and the inner array with the numeric queryID that the query has
* inside that worker.
*/
private final List<HttpWorker.ExecutionStats>[][] workerQueryExecutions;

Expand All @@ -41,7 +42,7 @@ private record StartEndTimePair (


/** Stores the start and end time for each workerID. */
private StartEndTimePair[] workerStartEndTime;
private final StartEndTimePair[] workerStartEndTime;

private final IRES.Factory iresFactory;

Expand Down

0 comments on commit cd86f42

Please sign in to comment.