Details
-
Improvement
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
-
None
-
NA
Description
'give up and quit' exit condition is
if (attempt(who) > maxtries)
{ return new Integer(COMMITTED); }where maxtries is Integer.MAX_VALUE.
As this test will never be true, made it >=
– agreed highly unlikely