瀏覽代碼

Enums won't have superclasses

kindlich 4 年之前
父節點
當前提交
370c2af1e9
沒有發現已知的金鑰在資料庫的簽署中
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      JavaIntegration/src/main/java/org/openzen/zencode/java/JavaNativeModule.java

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

@@ -339,7 +339,7 @@ public class JavaNativeModule {
339 339
 			definition.setSuperType(loadType(context, cls.getAnnotatedSuperclass()).type);
340 340
 		}
341 341
 
342
-		if (!foundRegistry && definition.getSuperType() == null && cls != Object.class) {
342
+		if (!foundRegistry && definition.getSuperType() == null && cls != Object.class && !(definition instanceof EnumDefinition)) {
343 343
 			definition.setSuperType(loadType(context, Object.class, false, false).type);
344 344
 		}
345 345
 

Loading…
取消
儲存