From 8a3cbf9e2d85b7fd824ee0c6f7b3e6b1143a0d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 29 Jun 2025 23:48:41 +0200 Subject: [PATCH] Checkstyle fix --- libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java index 598edea19..813b6740f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java @@ -3344,11 +3344,8 @@ public class Graph { List stopPartKind2 = new ArrayList<>(stopPartKind); if ((!isEmpty) && (next != null)) { - //if (!stopPart2.contains(next)) - { //?? might be a break or something - stopPart2.add(next); - stopPartKind2.add(StopPartKind.BLOCK_CLOSE); - } + stopPart2.add(next); + stopPartKind2.add(StopPartKind.BLOCK_CLOSE); } List onTrue = new ArrayList<>();