Skip to content

Commit e8d23c6

Browse files
committed
HBX-2563: Update Hibernate ORM Dependency to Version 6.3.0.Final
- Remove reference to deprecated 'PersistentClass#getPropertyIterator()' and 'Component#getPropertyIterator()' from 'orm/src/main/resources/dot/entitygraph.dot.ftl' Signed-off-by: Koen Aers <koen.aers@gmail.com>
1 parent 229c768 commit e8d23c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

orm/src/main/resources/dot/entitygraph.dot.ftl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ digraph EntityGraph {
2323

2424
<#list md.entityBindings as entity>
2525
/* Node ${entity.entityName} */
26-
<@nodeName entity.entityName/> [ label = "<@propertyLabels name=entity.entityName properties=entity.propertyIterator/>", URL="${entity.entityName?replace(".","/")}.html" ]
26+
<@nodeName entity.entityName/> [ label = "<@propertyLabels name=entity.entityName properties=entity.properties/>", URL="${entity.entityName?replace(".","/")}.html" ]
2727
/* Subclass edges for ${entity.entityName} */
2828
<#list entity.getDirectSubclasses() as subclass>
2929
<@nodeName subclass.entityName/> -> <@nodeName entity.entityName/> [ weight="10", arrowhead="onormal" ]
3030
</#list>
3131

32-
<@propertyEdges root=entity.entityName?replace(".","_dot_") properties=entity.propertyIterator/>
32+
<@propertyEdges root=entity.entityName?replace(".","_dot_") properties=entity.properties/>
3333
</#list>
3434

3535
}
@@ -51,9 +51,9 @@ digraph EntityGraph {
5151
<#assign component=compProperty.value>
5252
/* Node component ${component} */
5353
${c2h.getHibernateTypeName(compProperty)?replace(".","_dot_")} [
54-
label = "<@propertyLabels name=component.componentClassName properties=component.propertyIterator/>"
54+
label = "<@propertyLabels name=component.componentClassName properties=component.properties/>"
5555
]
56-
<@propertyEdges root=component.componentClassName?replace(".","_dot_") properties=component.propertyIterator/>
56+
<@propertyEdges root=component.componentClassName?replace(".","_dot_") properties=component.properties/>
5757
</#macro>
5858

5959
<#macro propertyEdges root properties>

0 commit comments

Comments
 (0)