diff --git a/compiler/android-tests/android-module/src/org/jetbrains/jet/compiler/android/AbstractCodegenTestCaseOnAndroid.java b/compiler/android-tests/android-module/src/org/jetbrains/jet/compiler/android/AbstractCodegenTestCaseOnAndroid.java index 08ea1b4aba3..e01365a3e18 100644 --- a/compiler/android-tests/android-module/src/org/jetbrains/jet/compiler/android/AbstractCodegenTestCaseOnAndroid.java +++ b/compiler/android-tests/android-module/src/org/jetbrains/jet/compiler/android/AbstractCodegenTestCaseOnAndroid.java @@ -40,8 +40,8 @@ public class AbstractCodegenTestCaseOnAndroid extends TestCase { try { method = clazz.getMethod("main", String[].class); } - catch(Throwable e) { - throw new RuntimeException("File: " + filePath, e); + catch(Throwable t) { + throw new RuntimeException("File: " + filePath, t); } method.invoke(null); return; diff --git a/compiler/android-tests/android-tests.iml b/compiler/android-tests/android-tests.iml index 82dfa01213e..77d875b8a9a 100644 --- a/compiler/android-tests/android-tests.iml +++ b/compiler/android-tests/android-tests.iml @@ -5,6 +5,7 @@ +