Parcourir la source

Allow Already converted classes from dependencies to be used, even if in another package

kindlich il y a 5 ans
Parent
révision
5e9d773084
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

@@ -410,7 +410,7 @@ public class JavaNativeModule {
410 410
 	
411 411
 	private boolean shouldLoadType(Type type) {
412 412
 		if (type instanceof Class)
413
-			return shouldLoadClass((Class<?>)type);
413
+			return definitionByClass.containsKey(type) || shouldLoadClass((Class<?>)type);
414 414
 		if (type instanceof ParameterizedType)
415 415
 			return shouldLoadType(((ParameterizedType)type).getRawType());
416 416
 		

Loading…
Annuler
Enregistrer