Skip to content

Commit 437b192

Browse files
committed
HBX-2563: Update Hibernate ORM Dependency to Version 6.3.0.Final
- Remove references to deprecated 'Value.getColumnIterator()' from 'orm/src/main/resources/doc/entities/entity.ftl' Signed-off-by: Koen Aers <koen.aers@gmail.com>
1 parent b2b98a1 commit 437b192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orm/src/main/resources/doc/entities/entity.ftl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<#if dochelper.getComponentPOJO(propertyIdentifier)?exists>
7878
<#assign compoclass = dochelper.getComponentPOJO(propertyIdentifier)>
7979
<#list compoclass.allPropertiesIterator as property>
80-
<#assign columnIterator = property.getValue().columnIterator>
80+
<#assign columnIterator = property.getValue().selectables.iterator()>
8181
<#assign rowspan = property.getValue().getColumnSpan()>
8282
<tr>
8383
<td <#if (rowspan>0)>rowspan="${rowspan}"</#if>>
@@ -287,7 +287,7 @@
287287
<tbody>
288288

289289
<#list properties as property>
290-
<#assign columnIterator = property.getValue().columnIterator>
290+
<#assign columnIterator = property.getValue().selectables.iterator()>
291291
<#assign rowspan = property.getValue().getColumnSpan()>
292292
<tr>
293293
<td <#if (rowspan > 0)>rowspan="${rowspan}"</#if>>

0 commit comments

Comments
 (0)