Console.trace("Quit response is '" + got.toString()
+ "' after external structure viewer check");
- boolean wait = false;
if (got == QResponse.CANCEL_QUIT)
{
// reset
&& BackupFiles.hasSavesInProgress())
{
waitQuit(interactive, okQuit, forceQuit, cancelQuit);
- QResponse waitResponse = gotQuitResponse();
- wait = waitResponse == QResponse.QUIT;
}
Console.debug("Quit response is '" + got.toString()
+ "' after waiting for save");
}
Runnable next = null;
- String nextName = null;
got = gotQuitResponse();
Console.debug("Quit response is '" + got.toString()
+ "' before setting next");
{
case QUIT:
next = okQuit;
- nextName = "okQuit";
break;
case FORCE_QUIT: // not actually an option at this stage
next = forceQuit;
- nextName = "forceQuit";
break;
default:
next = cancelQuit;
- nextName = "cancelQuit";
break;
}
Console.debug(