From 3cb6d6dafc7e0969ec41d2b25ae916ea9db28aa8 Mon Sep 17 00:00:00 2001
From: Pierre Roussel <pierre.roussel@etu.utc.fr>
Date: Wed, 9 Nov 2022 08:27:52 +0000
Subject: [PATCH] Cleaning some useless code

---
 vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs b/vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
index 153f006..dcf7567 100644
--- a/vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
+++ b/vs/LO23/Client/data/Comm_calls_Data_Client_Impl.cs
@@ -1,4 +1,4 @@
-using Shared.data;
+using Shared.data;
 using System;
 using System.Collections.Generic;
 using System.Data;
@@ -8,16 +8,16 @@ namespace Client.Data
 {   
     public class Comm_calls_Data_Client_impl : Shared.interfaces.Interface_Comm_calls_Data_Client
     {
-        private List<LightUser> users = new List<LightUser>();
+        private List<LightUser> users = new List<LightUser>();
         private List<LightGame> games = new List<LightGame>();
         public Comm_calls_Data_Client_impl(){}
 
         public void setGamesAndUsersList(List<LightUser> users, List<LightGame> games)
-        {
-            this.users = users;
-            this.games = games;
-        }
-
+        {
+            this.users = users;
+            this.games = games;
+        }
+
     }
 }
 
-- 
GitLab