Merge pull request #1 from NyxiumYuuki/Branch_Maxime

Création d'un constructeur pour ImportData
This commit is contained in:
MHAVGOUDOUKIAN 2020-12-12 15:42:55 +01:00 committed by GitHub
commit f8b94eb594
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,8 @@
package fr.myny.data; package fr.myny.data;
public class ImportData { public class ImportData {
ImportData()
{
System.out.println("Creation d'un ImportData");
}
} }

View file

@ -1,7 +1,7 @@
public class test{ public class test{
public static void main(String[] args){ public static void main(String[] args){
System.out.println("Il n'y a rien a voir !"); System.out.println("Il n'y a rien a voir !");
System.out.println("nico fait un test"); System.out.println("nico fait un test");
System.out.println("Il Je test les branchs");
} }
} }