fix broken compilation
This commit is contained in:
+2
-2
@@ -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;
|
||||
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user