瀏覽代碼

JavaNativeModule: Add type parameter infos from dependend modules

Background: Otherwise they will throw Exceptions because the class definitions are there but not the type infos
kindlich 4 年之前
父節點
當前提交
a7a7f84159
沒有發現已知的金鑰在資料庫的簽署中
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1
    0
      JavaIntegration/src/main/java/org/openzen/zencode/java/JavaNativeModule.java

+ 1
- 0
JavaIntegration/src/main/java/org/openzen/zencode/java/JavaNativeModule.java 查看文件

@@ -76,6 +76,7 @@ public class JavaNativeModule {
76 76
 
77 77
 		for (JavaNativeModule dependency : dependencies) {
78 78
 			definitionByClass.putAll(dependency.definitionByClass);
79
+			context.typeVariables.putAll(dependency.context.typeVariables);
79 80
 		}
80 81
 
81 82
 		compiled = new JavaCompiledModule(module, FunctionParameter.NONE);

Loading…
取消
儲存