Coder Social home page Coder Social logo

Application closing bug about jworksheet HOT 6 CLOSED

pponec avatar pponec commented on July 28, 2024 1
Application closing bug

from jworksheet.

Comments (6)

d-led avatar d-led commented on July 28, 2024 1

thanks for the pragmatic tool likewise!

from jworksheet.

d-led avatar d-led commented on July 28, 2024

commenting out that hook fixes the problem: https://github.com/pponec/jworksheet/blob/master/src/main/java/net/ponec/jworksheet/gui/JWorkSheet.java#L267-L273

there's already another hook, so there's probably a race condition finalizing the app

from jworksheet.

pponec avatar pponec commented on July 28, 2024

there's already another hook, so there's probably a race condition finalizing the app

Thank you for the notification, the bug is fixed.

from jworksheet.

pponec avatar pponec commented on July 28, 2024

At first glance, it looks like the application is closed properly, but unfortunately the system process will continue.

from jworksheet.

d-led avatar d-led commented on July 28, 2024

I've rather tried the other simple hook. This worked on OSX:

--- a/src/main/java/net/ponec/jworksheet/gui/JWorkSheet.java
+++ b/src/main/java/net/ponec/jworksheet/gui/JWorkSheet.java
@@ -253,15 +253,12 @@ public final class JWorkSheet extends TopFrame {
                 }
             });
 
-            // Set a terminate hook (https://www.baeldung.com/jvm-shutdown-hooks):
-            running = true;
-            Runtime.getRuntime().addShutdownHook(new Thread(() -> {
-                if (running) {
-                    running = false;
+            Runtime.getRuntime().addShutdownHook(new Thread(){^M
+                @Override^M
+                public void run() {^M
                     closeAppl(null);
                 }
-                System.exit(0);
-            }));

from jworksheet.

pponec avatar pponec commented on July 28, 2024

Thank you for information, the bug is fixed today.

from jworksheet.

Related Issues (1)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.