mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-27 21:01:15 +08:00
improved embeddable handling
This commit is contained in:
parent
1d8b855387
commit
3acbc98405
@ -103,7 +103,7 @@
|
||||
<processor>com.mysema.query.apt.jdo.JDOAnnotationProcessor</processor>
|
||||
</processors>
|
||||
</configuration>
|
||||
</execution>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
||||
@ -123,17 +123,16 @@ public class Processor {
|
||||
public void process() {
|
||||
processAnnotations();
|
||||
|
||||
// remove entity types from extensionTypes
|
||||
for (String key : entityTypes.keySet()) {
|
||||
extensionTypes.remove(key);
|
||||
}
|
||||
|
||||
// remove super types from others
|
||||
for (String key : actualSupertypes.keySet()) {
|
||||
entityTypes.remove(key);
|
||||
extensionTypes.remove(key);
|
||||
embeddables.remove(key);
|
||||
}
|
||||
|
||||
for (String key : entityTypes.keySet()) {
|
||||
extensionTypes.remove(key);
|
||||
embeddables.remove(key);
|
||||
}
|
||||
|
||||
serializeTypes();
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user