mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-29 02:06:32 +00:00
Fix try..catch..finally when there is no exit from try block.
This commit is contained in:
@@ -811,7 +811,7 @@ public class AVM2Graph extends Graph {
|
||||
|
||||
for (int e : finnalysIndicesToBe) {
|
||||
ABCException finallyExceptionToBe = body.exceptions[e];
|
||||
if (catchedExceptions.isEmpty()) {
|
||||
if (catchedExceptions.isEmpty() || outSideExceptionPart == null) {
|
||||
//there's no exception, finally only
|
||||
finallyIndex = e;
|
||||
finallyException = finallyExceptionToBe;
|
||||
|
||||
Reference in New Issue
Block a user