We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3ac54f commit cdb8d8cCopy full SHA for cdb8d8c
src/main/java/org/fusesource/jansi/internal/JansiLoader.java
@@ -72,7 +72,10 @@ public class JansiLoader {
72
public static synchronized boolean initialize() {
73
// only cleanup before the first extract
74
if (!loaded) {
75
- cleanup();
+ Thread cleanup = new Thread(JansiLoader::cleanup, "cleanup");
76
+ cleanup.setPriority(Thread.MIN_PRIORITY);
77
+ cleanup.setDaemon(true);
78
+ cleanup.start();
79
}
80
try {
81
loadJansiNativeLibrary();
0 commit comments