From 36b23546317e6e4f739bfcd68e1917502d705e14 Mon Sep 17 00:00:00 2001 From: sj801446 Date: Thu, 23 May 2019 11:21:13 +0200 Subject: [PATCH] Delete X.java (useless, it was for the git learning TD) --- X.java | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 X.java diff --git a/X.java b/X.java deleted file mode 100644 index f79506f..0000000 --- a/X.java +++ /dev/null @@ -1,37 +0,0 @@ -public class X { - private String nom; - private String prenom; - - - public X() { - this.nom = null; - this.preom = null; - } - - public X(String s1, String s2) { - this.nom = s1; - this.prenom = s2; - } - - public getNom() { - return this.nom; - } - - public getPrenom() { - return this.prenom; - } - - public setNom(String s) { - this.nom = s; - } - - public setPrenom(Sting s) { - this.prenom = s; - } - - @Override - public String toString() { - return "La personne s'appelle " + this.prenom + " " + this.nom; - } - -}