JAL-4442 Removed debugging variables and a stray 'wait' boolean which is not used JAL-4442_cant_quit_jalview_on_windows_11
authorBen Soares <b.soares@dundee.ac.uk>
Mon, 26 Aug 2024 15:12:00 +0000 (16:12 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Mon, 26 Aug 2024 15:12:00 +0000 (16:12 +0100)
src/jalview/gui/QuitHandler.java

index 7605fa8..8bb8ac8 100644 (file)
@@ -263,7 +263,6 @@ public class QuitHandler
     Console.trace("Quit response is '" + got.toString()
             + "' after external structure viewer check");
 
-    boolean wait = false;
     if (got == QResponse.CANCEL_QUIT)
     {
       // reset
@@ -280,15 +279,12 @@ public class QuitHandler
               && 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");
@@ -296,15 +292,12 @@ public class QuitHandler
     {
     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(