Skip to content
Snippets Groups Projects
Commit 4e960728 authored by PIQUEREZ Corentin's avatar PIQUEREZ Corentin
Browse files

fenetre de précision fonctionnelle !

parent e987137f
No related branches found
No related tags found
No related merge requests found
...@@ -398,7 +398,11 @@ public class ShukanView extends JPanel ...@@ -398,7 +398,11 @@ public class ShukanView extends JPanel
String nom_profs = teachers[0]; String nom_profs = teachers[0];
for (int j = 1; j<teachers.length; j++) for (int j = 1; j<teachers.length; j++)
{ {
nom_profs+=" / "+teachers[j]; rajout_prof = true;
for (int k = 0; k<j; k++){
if (teachers[j]==teachers[k]) rajout_prof = false;
}
if (rajout_prof) nom_profs+=" / "+teachers[j];
} }
System.out.println(); System.out.println();
noms_cours[i] = new JLabel("Cours : "+data.activityName(activities[week_activities[i]])); noms_cours[i] = new JLabel("Cours : "+data.activityName(activities[week_activities[i]]));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment