From d24daecccbbe58fcb80158c722c84c96133f4d49 Mon Sep 17 00:00:00 2001
From: Henry Page <h.page@student.tudelft.nl>
Date: Sun, 14 May 2023 22:48:44 +0200
Subject: [PATCH] remove second filter

---
 src/main/java/nl/tudelft/queue/service/LabStatusService.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/nl/tudelft/queue/service/LabStatusService.java b/src/main/java/nl/tudelft/queue/service/LabStatusService.java
index d0a23ca2f..d8c04c252 100644
--- a/src/main/java/nl/tudelft/queue/service/LabStatusService.java
+++ b/src/main/java/nl/tudelft/queue/service/LabStatusService.java
@@ -102,7 +102,7 @@ public class LabStatusService {
 	 * @return               A mapping of (already participating) assistant IDs to the time in milliseconds
 	 *                       since their last request interaction.
 	 */
-	private Map<Long, Long> getTimeSinceLastInteractionAllTA(QueueSession<?> qs, Set<Long> editionFilter) {
+	private Map<Long, Long> getTimeSinceLastInteractionAllTA(QueueSession<?> qs) {
 		return qs.getRequests().stream().flatMap(request -> request.getEventInfo().getEvents().stream())
 				.filter(event -> event instanceof EventWithAssistant)
 				.map(event -> (EventWithAssistant) event)
-- 
GitLab