From c71ab287747435c59144a49fb8ba3fa53ed1df15 Mon Sep 17 00:00:00 2001 From: skylot <118523+skylot@users.noreply.github.com> Date: Sun, 4 Feb 2024 17:46:26 +0000 Subject: [PATCH] Update jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java --- .../tests/integration/trycatch/TestUnreachableCatch2.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java b/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java index e40750d7ab1..c1f275bdb47 100644 --- a/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java +++ b/jadx-core/src/test/java/jadx/tests/integration/trycatch/TestUnreachableCatch2.java @@ -50,8 +50,8 @@ public void close() throws IOException { @Test public void test() { - allowWarnInCode(); - setFallback(); + // TODO: result code not compilable because of 'break' after 'throw' + disableCompilation(); String code = getClassNode(UnusedExceptionHandlers1.class).getCode().toString(); assertThat(code, containsString("IOException")); }