From 15519d40c14a77b1439dc067b44e1c3c269dbe0f Mon Sep 17 00:00:00 2001 From: yHSJ Date: Tue, 10 Dec 2024 11:55:57 -0500 Subject: [PATCH] chore: spotless --- app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java b/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java index 5837e18..d31d12f 100644 --- a/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java +++ b/app/src/main/java/fi/sundae/bot/tournament/Matchmaker.java @@ -205,9 +205,9 @@ public HashMap> getUsernames() { region = regions.nextElement(); } List usernames = - REGISTERED_USERS.get(region).stream() - .map(User::getName) - .collect(Collectors.toCollection(ArrayList::new)); + REGISTERED_USERS.get(region).stream() + .map(User::getName) + .collect(Collectors.toCollection(ArrayList::new)); userNamesInRegions.put(region, usernames); return userNamesInRegions;