From 628e0e416f951487094f7b9b9dcd93da84c87cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 26 Apr 2026 16:56:17 +0200 Subject: [PATCH] style: fix checkstyle --- .../jpexs/decompiler/flash/action/ActionGraph.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/ActionGraph.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/ActionGraph.java index 60002942b..96e99cd9e 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/ActionGraph.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/ActionGraph.java @@ -355,8 +355,8 @@ public class ActionGraph extends Graph { SetTargetActionItem st = (SetTargetActionItem) it; if (st.target.isEmpty()) { if (targetStart > -1) { - targetEnd = t; - break; + targetEnd = t; + break; } } else { target = new DirectValueActionItem(null, null, 0, st.target, new ArrayList<>()); @@ -378,8 +378,8 @@ public class ActionGraph extends Graph { } if ((st.target instanceof DirectValueActionItem) && st.target.getResult().equals("")) { if (targetStart > -1) { - targetEnd = t; - break; + targetEnd = t; + break; } } else { targetStart = t; @@ -451,7 +451,7 @@ public class ActionGraph extends Graph { targetEnd = t; } } - + if (it instanceof TellTargetActionItem && targetStart > -1) { targetEnd = t; } @@ -1051,7 +1051,7 @@ public class ActionGraph extends Graph { ActionSecondPassData spd = new ActionSecondPassData(); Set processedIfs = new HashSet<>(); checkSecondPassSwitches(localData, loops, throwStates, spd.switchCases, spd.switchBreaks, processedIfs, list, spd.switchParts, spd.switchOnFalseParts, spd.switchCaseExpressions); - + return spd; } @@ -1182,7 +1182,7 @@ public class ActionGraph extends Graph { allSwitchParts.add(switchParts); allSwitchOnFalseParts.add(switchOnFalseParts); allSwitchExpressions.add(switchExpressions); - allSwitchCases.add(switchCases); + allSwitchCases.add(switchCases); try { allSwitchBreaks.add(getMostCommonPart(localData, switchCases, loops, throwStates, new ArrayList<>())); } catch (InterruptedException ex) {