Added: AS2 - Information about need of decompiling all scripts to detect uninitialized class fields

Fixed: #2338 AS decompiling threads got stuck after cancelling / timeout
CancellableWorker refactoring
This commit is contained in:
Jindra Petřík
2024-10-04 19:45:16 +02:00
parent 9793ab0cec
commit a4a9ba4c6b
59 changed files with 495 additions and 204 deletions

View File

@@ -40,6 +40,9 @@ public class ConsoleAbortRetryIgnoreHandler implements AbortRetryIgnoreHandler {
@Override
public int handle(Throwable thrown) {
if (thrown instanceof InterruptedException) {
return AbortRetryIgnoreHandler.ABORT;
}
if (errorMode != AbortRetryIgnoreHandler.UNDEFINED) {
int result = errorMode;