From 6f4e84287e5b6be91b14683e044fa55f064b12f1 Mon Sep 17 00:00:00 2001 From: Alex Tkachman Date: Tue, 14 Aug 2012 09:11:27 +0300 Subject: [PATCH] fix broken compilation --- .../compiler/android/AbstractCodegenTestCaseOnAndroid.java | 4 ++-- compiler/android-tests/android-tests.iml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) 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 @@ +