diff --git a/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.java b/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.java index c7e0497c56a..781e39ba099 100644 --- a/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.java +++ b/compiler/testData/compileJavaAgainstKotlin/method/throws/Delegation.java @@ -4,16 +4,7 @@ class JavaClass { void testMethod() { Test test = new Test(); test.none(); - - try { - test.one(); - } - catch (E1 e) {} - - try { - test.two(); - } - catch (E1 e) {} - catch (E2 e) {} + test.one(); + test.two(); } }