fix broken compilation

This commit is contained in:
Alex Tkachman
2012-08-14 09:11:27 +03:00
parent 016f528334
commit 6f4e84287e
2 changed files with 3 additions and 2 deletions
@@ -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;
+1
View File
@@ -5,6 +5,7 @@
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/android-module/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />