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

suppression print left right

parent 5d96f5f4
No related branches found
No related tags found
No related merge requests found
...@@ -313,7 +313,6 @@ public class ShukanModule ...@@ -313,7 +313,6 @@ public class ShukanModule
} }
/** Sets an activity to be displayed on middle */ /** Sets an activity to be displayed on middle */
public void setOnMiddle (int act) { public void setOnMiddle (int act) {
for (int i =0; i<onLeft.length; i++) System.out.println("left : "+onLeft[i]+" right : "+onRight[i]);
if (act >= onLeft.length) { if (act >= onLeft.length) {
boolean[] tmpRight = new boolean[onLeft.length + 1]; boolean[] tmpRight = new boolean[onLeft.length + 1];
boolean[] tmpLeft = new boolean[onLeft.length + 1]; boolean[] tmpLeft = new boolean[onLeft.length + 1];
...@@ -329,8 +328,7 @@ public class ShukanModule ...@@ -329,8 +328,7 @@ public class ShukanModule
onLeft[act] = false; onLeft[act] = false;
onRight[act] = false; onRight[act] = false;
} }
System.out.println("---------------------");
for (int i =0; i<onLeft.length; i++) System.out.println("left : "+onLeft[i]+" right : "+onRight[i]);
} }
/** Sets an activity to be displayed on right */ /** Sets an activity to be displayed on right */
public void setOnRight (int act) public void setOnRight (int act)
......
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