mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-24 21:07:26 +08:00
Fix map usage
This commit is contained in:
parent
51e7541098
commit
b5303e7537
@ -146,7 +146,7 @@ public abstract class AbstractDomainExporter {
|
||||
Set<Supertype> additions = Sets.newHashSet();
|
||||
for (Map.Entry<Class<?>, EntityType> entry : allTypes.entrySet()) {
|
||||
EntityType entityType = entry.getValue();
|
||||
if (entityType.getSuperType() != null && !allTypes.containsKey(entityType.getSuperType().getType())) {
|
||||
if (entityType.getSuperType() != null && !allTypes.containsKey(entityType.getSuperType().getType().getJavaClass())) {
|
||||
additions.add(entityType.getSuperType());
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user