You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (options.preferGraphQLResolver && realEntry.hasResolverRef()) {
268
-
log.warn("The real entry ${realEntry.joinReferences()} is a GraphQLResolver so ignoring this one ${classEntry.clazz}$reference")
268
+
log.warn("The real entry ${realEntry.joinReferences()} is a GraphQLResolver so ignoring this one ${javaType.unwrap()}$reference")
269
269
} else {
270
-
throwSchemaClassScannerError("Two different classes used for type ${type.name}:\n${realEntry.joinReferences()}\n\n- ${classEntry.clazz}:\n| ${reference.getDescription()}")
270
+
throwSchemaClassScannerError("Two different classes used for type ${type.name}:\n${realEntry.joinReferences()}\n\n- ${javaType.unwrap()}:\n| ${reference.getDescription()}")
271
271
}
272
272
}
273
273
}
274
274
275
275
realEntry.addReference(reference)
276
276
277
277
// Check if we just added the entry... a little odd, but it works (and thread-safe, FWIW)
278
-
if (typeWasSet &&classEntry!=null) {
279
-
handleNewType(type, classEntry.type)
278
+
if (typeWasSet &&javaType!=null) {
279
+
handleNewType(type, javaType)
280
280
}
281
281
}
282
282
@@ -356,21 +356,21 @@ internal class SchemaClassScanner(initialDictionary: BiMap<String, Class<*>>, al
0 commit comments