fix broken compilation
This commit is contained in:
+2
-2
@@ -40,8 +40,8 @@ public class AbstractCodegenTestCaseOnAndroid extends TestCase {
|
|||||||
try {
|
try {
|
||||||
method = clazz.getMethod("main", String[].class);
|
method = clazz.getMethod("main", String[].class);
|
||||||
}
|
}
|
||||||
catch(Throwable e) {
|
catch(Throwable t) {
|
||||||
throw new RuntimeException("File: " + filePath, e);
|
throw new RuntimeException("File: " + filePath, t);
|
||||||
}
|
}
|
||||||
method.invoke(null);
|
method.invoke(null);
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||||
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
<sourceFolder url="file://$MODULE_DIR$/tests" isTestSource="true" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/android-module/src" isTestSource="false" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
|||||||
Reference in New Issue
Block a user