Skip to content

Commit 59326a1

Browse files
committed
HBX-2586: Remove uses of the deprecated #foreach Freemarker instruction from the template files
- Remove the uses from 'test/nodb/src/test/resources/org/hibernate/tool/hbm2x/GenericExporterTest/generic-exception.ftl' Signed-off-by: Koen Aers <koen.aers@gmail.com>
1 parent d265f6e commit 59326a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/nodb/src/test/resources/org/hibernate/tool/hbm2x/GenericExporterTest/generic-exception.ftl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
${pojo.getShortName()}
22
${pojo.shortName}
33

4-
<#foreach cl in [1,2,3]>
4+
<#list [1,2,3] as cl>
55
<@greet person=cl/>
6-
</#foreach>
6+
</#list>
77

88

99
<#macro greet person>

0 commit comments

Comments
 (0)