From d3a0cb20da264a17a9d7e44923339e4925deffb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Stan=C4=9Bk?= Date: Sat, 9 Nov 2024 19:35:25 +0100 Subject: [PATCH] useless condition removed --- app/Services/ApplicationService.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/Services/ApplicationService.php b/app/Services/ApplicationService.php index 5da34d27e..6af12f5bb 100644 --- a/app/Services/ApplicationService.php +++ b/app/Services/ApplicationService.php @@ -776,9 +776,7 @@ public function transferRegistration(User $sourceUser, User $targetUser, User $c // přidání všech rolí zdrojového uživatele $targetRoles = new ArrayCollection(); foreach ($sourceUserRoles as $role) { - if (! $targetRoles->contains($role)) { - $targetRoles->add($role); - } + $targetRoles->add($role); } // přidání zaplacených rolí (kromě role neregistrovaný) cílového uživatele @@ -795,9 +793,7 @@ public function transferRegistration(User $sourceUser, User $targetUser, User $c // přidání zaplacených podakcí zdrojového uživatele $targetSubevents = new ArrayCollection(); foreach ($sourceUserPaidSubevents as $subevent) { - if (! $targetSubevents->contains($subevent)) { - $targetSubevents->add($subevent); - } + $targetSubevents->add($subevent); } // odebrání podakcí, které už cílový uživatel má, ale budou mu přidány převodem