Tutu
This commit is contained in:
@@ -6,7 +6,7 @@ import java.util.ArrayList;
|
||||
|
||||
public class EquipeDeFoot extends GroupeAbstrait {
|
||||
|
||||
public String nom;
|
||||
private final String nom;
|
||||
|
||||
public EquipeDeFoot(ArrayList<Personnage> list) {
|
||||
super(list);
|
||||
|
||||
@@ -5,9 +5,9 @@ import Person.Personnage;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class GroupeAbstrait extends PersonnagesAbstraits {
|
||||
ArrayList<Personnage> list = new ArrayList<Personnage>();
|
||||
private ArrayList<Personnage> list = new ArrayList<Personnage>();
|
||||
|
||||
public GroupeAbstrait(ArrayList<Personnage> list) {
|
||||
GroupeAbstrait(ArrayList<Personnage> list) {
|
||||
this.list = list;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user