From 60e3e2280b24a5f0efd5c3d1fb5fb1f3c09d252f Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Thu, 4 Jul 2019 21:56:50 +0200 Subject: [PATCH] Cleanup (pointless 'throws' in test) GitOrigin-RevId: 6fc5d22faa40c2f73f3af75501583346fe65561e --- .../completion/Normal13CompletionTest.groovy | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/java/java-tests/testSrc/com/intellij/java/codeInsight/completion/Normal13CompletionTest.groovy b/java/java-tests/testSrc/com/intellij/java/codeInsight/completion/Normal13CompletionTest.groovy index 04e0a71820d8..55576f2f1434 100644 --- a/java/java-tests/testSrc/com/intellij/java/codeInsight/completion/Normal13CompletionTest.groovy +++ b/java/java-tests/testSrc/com/intellij/java/codeInsight/completion/Normal13CompletionTest.groovy @@ -13,12 +13,12 @@ class Normal13CompletionTest extends NormalCompletionTestCase { return JAVA_13 } - void testDefaultInRuleSwitch() throws Throwable { doTest() } - void testLabelInRuleSwitch() throws Throwable { doTest() } - void testSecondLabelInOldSwitch() throws Throwable { doTest() } - void testSecondLabelInRuleSwitch() throws Throwable { doTest() } - void testSwitchExpressionStart() throws Throwable { doTest() } - void testYieldInSwitchExpression() throws Throwable { doTest() } - void testInsideYieldInSwitchExpression() throws Throwable { doTest() } - void testInsideRuleInSwitchExpression() throws Throwable { doTest() } + void testDefaultInRuleSwitch() { doTest() } + void testLabelInRuleSwitch() { doTest() } + void testSecondLabelInOldSwitch() { doTest() } + void testSecondLabelInRuleSwitch() { doTest() } + void testSwitchExpressionStart() { doTest() } + void testYieldInSwitchExpression() { doTest() } + void testInsideYieldInSwitchExpression() { doTest() } + void testInsideRuleInSwitchExpression() { doTest() } } \ No newline at end of file