Bug - Fixed Volcano maze solver no longer runs to completion

Veracity

Developer
Staff member
This is new. I click the "solve" button and it takes a single hop and stops.
I've done this three times.

I'm going to try it in Eclipse and see if I can figure out what has changed.
 
Code:
		// Move up next to the goal.
		for ( Integer next : solution )
		{
			int sq = next.intValue();

			// Quit when we are about to move to the goal
			if ( sq == VolcanoMazeManager.goal )
			{
				break;
			}

			VolcanoMazeRequest req = new VolcanoMazeRequest( sq );
			RequestThread.postRequest( req );
		}
I am suspicious because RequestThread has changed recently. There is no reason this has to be in a request sequence; it could simply call run() on the request, but something has changed.

Back to Eclipse...
 
Back
Top