JAL-4298 another implicated line bug/JAL-4298_java_console_causing_hang_at_startup
authorBen Soares <b.soares@dundee.ac.uk>
Fri, 20 Oct 2023 13:16:50 +0000 (14:16 +0100)
committerBen Soares <b.soares@dundee.ac.uk>
Fri, 20 Oct 2023 13:16:50 +0000 (14:16 +0100)
src/jalview/gui/Console.java

index 7e8cbc6..960421f 100644 (file)
@@ -715,7 +715,7 @@ public class Console extends WindowAdapter
             // simply append whole buffer
             synchronized (textArea.getDocument())
             {
-              textArea.append(replace.toString());
+              textArea.append(replace.toString()); // ##### implicated BLOCKED
               count += replace.length();
               if (count > byteslim)
               {