Skip to content
Snippets Groups Projects
Commit 8493dbb3 authored by Daniel Rodriguez's avatar Daniel Rodriguez
Browse files

changé le type de collection de contactlist à List

parent 6c6b4c4e
No related branches found
No related tags found
No related merge requests found
import java.util.ArrayList;
import java.util.List;
import java.io.Serializable;
class ContactList implements Serializable
{
//private Contact[] contacts = {};
private ArrayList<Contact> contacts = new ArrayList<>();
private List<Contact> contacts = new ArrayList<>();
private static final long serialVersionUID = 1234567890L;
public ContactList(){}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment