Skip to content
Snippets Groups Projects
Commit 49f1ec53 authored by BARBI HUGO's avatar BARBI HUGO
Browse files

estFull method

parent f1009416
Branches
Tags
No related merge requests found
......@@ -66,17 +66,6 @@
<option name="Make" enabled="true" />
</method>
</configuration>
<configuration default="true" type="ArquillianJUnit" factoryName="" nameIsGenerated="true">
<option name="arquillianRunConfiguration">
<value>
<option name="containerStateName" value="" />
</value>
</option>
<option name="TEST_OBJECT" value="class" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
<recent_temporary>
<list>
<item itemvalue="Application.FullRowDetection" />
......@@ -103,6 +92,7 @@
<workItem from="1607010556720" duration="2636000" />
<workItem from="1607245589897" duration="24000" />
<workItem from="1607412315237" duration="91000" />
<workItem from="1607415898623" duration="34000" />
</task>
<servers />
</component>
......
......@@ -39,10 +39,9 @@ public class Grille
public boolean estPleine() {
boolean res = false;
for (int i = 0; i < grille.length; i++) {
if (i == grille.length - 1) {
res = true;
}
if (grille.length == nbCases){
res = true;
}
return res;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment