From 263bfd23c543f70147072660ac7939c271f5b53f Mon Sep 17 00:00:00 2001 From: AUGUSTIN_100 Date: Sun, 2 Oct 2022 23:38:03 +0200 Subject: [PATCH] =?UTF-8?q?UTest=20=20sur=20=C3=A9quipe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/BowlingLib/Model/Equipe.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/BowlingLib/Model/Equipe.cs b/Sources/BowlingLib/Model/Equipe.cs index b734e68..7a1b5b2 100644 --- a/Sources/BowlingLib/Model/Equipe.cs +++ b/Sources/BowlingLib/Model/Equipe.cs @@ -69,9 +69,9 @@ namespace BowlingLib.Model } //retourner la liste non modifiable des joueurs de l'équipe - public ReadOnlyCollection GetJoueurs() + public ReadOnlyCollection GetJoueurs() { - return new ReadOnlyCollection(this.Joueurs); + return new ReadOnlyCollection(this.Joueurs); }