Ver código fonte

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

kindlich 5 anos atrás
pai
commit
5e9d773084
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados

+ 1
- 1
JavaIntegration/src/main/java/org/openzen/zencode/java/JavaNativeModule.java Ver arquivo

@@ -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
 		

Carregando…
Cancelar
Salvar