Skip to content

Commit

Permalink
#18 - Refactor getMergedClassMetadata to buildClassMetadata so that c…
Browse files Browse the repository at this point in the history
…md creation is easier to understand
  • Loading branch information
ckittrell committed Jun 25, 2015
1 parent 672123d commit 2794ac3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public DynamicResultSet inspect(PersistencePackage persistencePackage, DynamicEn

allMergedProperties.put(MergedPropertyType.PRIMARY, properties);
Class<?>[] entityClasses = dynamicEntityDao.getAllPolymorphicEntitiesFromCeiling(MenuItem.class);
ClassMetadata mergedMetadata = helper.getMergedClassMetadata(entityClasses, allMergedProperties);
ClassMetadata mergedMetadata = helper.buildClassMetadata(entityClasses, persistencePackage, allMergedProperties);

return new DynamicResultSet(mergedMetadata, null, null);

Expand Down

0 comments on commit 2794ac3

Please sign in to comment.