Parcourir la source

Enums won't have superclasses

kindlich il y a 4 ans
Parent
révision
370c2af1e9
Aucune clé connue n'a été trouvée dans la base pour cette signature

+ 1
- 1
JavaIntegration/src/main/java/org/openzen/zencode/java/JavaNativeModule.java Voir le fichier

@@ -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…
Annuler
Enregistrer