diff --git a/src/main/java/org/aksw/iguana/cc/tasks/impl/StresstestResultProcessor.java b/src/main/java/org/aksw/iguana/cc/tasks/impl/StresstestResultProcessor.java index 8a1f0e3c1..26f21a2af 100644 --- a/src/main/java/org/aksw/iguana/cc/tasks/impl/StresstestResultProcessor.java +++ b/src/main/java/org/aksw/iguana/cc/tasks/impl/StresstestResultProcessor.java @@ -31,8 +31,9 @@ private record StartEndTimePair ( private final Supplier>> 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[][] workerQueryExecutions; @@ -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;