This commit is contained in:
Thomas Becker 2013-09-23 16:57:13 +02:00
parent 1eca1e7c3c
commit 33dedd15f9
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public abstract class IteratingCallback implements Callback
// Make some progress by calling process()
if (process())
{
// A true return indicates we are finished a no further callbacks
// A true return indicates we are finished and no further callbacks
// are scheduled. So we must still be ITERATING.
if (_state.compareAndSet(State.ITERATING,State.SUCCEEDED))
completed();