Drop throws usages with changes in Java code

This commit is contained in:
Denis Zharkov
2015-04-20 16:41:02 +03:00
parent 5b9aff12d0
commit 8d7aa3fdcd
10 changed files with 11 additions and 13 deletions
@@ -44,7 +44,6 @@ import java.io.IOException
public abstract class JetLightCodeInsightFixtureTestCase : LightCodeInsightFixtureTestCase() {
private var kotlinInternalModeOriginalValue = false
throws(javaClass<Exception>())
override fun setUp() {
super.setUp()
(StartupManager.getInstance(getProject()) as StartupManagerImpl).runPostStartupActivities()
@@ -54,7 +53,6 @@ public abstract class JetLightCodeInsightFixtureTestCase : LightCodeInsightFixtu
KotlinInternalMode.enabled = true
}
throws(javaClass<Exception>())
override fun tearDown() {
KotlinInternalMode.enabled = kotlinInternalModeOriginalValue
VfsRootAccess.disallowRootAccess(JetTestUtils.getHomeDirectory())