From 1edbbdb986cb62e66e2b2f84b71ad970c142706e Mon Sep 17 00:00:00 2001
From: Camille Simiand <camille.simiand@tetras-libre.fr>
Date: Thu, 10 Feb 2022 07:48:21 +0100
Subject: [PATCH] Remove dead code

---
 src/Repository/GroupRepository.php | 29 -----------------------------
 1 file changed, 29 deletions(-)

diff --git a/src/Repository/GroupRepository.php b/src/Repository/GroupRepository.php
index 8f7d98e..8f1d8f4 100755
--- a/src/Repository/GroupRepository.php
+++ b/src/Repository/GroupRepository.php
@@ -18,33 +18,4 @@ class GroupRepository extends ServiceEntityRepository
     {
         parent::__construct($registry, Group::class);
     }
-
-    // /**
-    //  * @return Group[] Returns an array of Group objects
-    //  */
-    /*
-    public function findByExampleField($value)
-    {
-        return $this->createQueryBuilder('g')
-            ->andWhere('g.exampleField = :val')
-            ->setParameter('val', $value)
-            ->orderBy('g.id', 'ASC')
-            ->setMaxResults(10)
-            ->getQuery()
-            ->getResult()
-        ;
-    }
-    */
-
-    /*
-    public function findOneBySomeField($value): ?Group
-    {
-        return $this->createQueryBuilder('g')
-            ->andWhere('g.exampleField = :val')
-            ->setParameter('val', $value)
-            ->getQuery()
-            ->getOneOrNullResult()
-        ;
-    }
-    */
 }
-- 
GitLab