Skip to content

Commit 4741be0

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-test.ftl' Signed-off-by: Koen Aers <koen.aers@gmail.com>
1 parent 59326a1 commit 4741be0

File tree

1 file changed

+2
-2
lines changed
  • test/nodb/src/test/resources/org/hibernate/tool/hbm2x/GenericExporterTest

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<#foreach item in ctx?keys>
1+
<#list ctx?keys as item>
22
<#-- ${templates.create("generictemplates/pojo/generic-content", item + ".txt")} -->
33
<#assign captured><#include "generic-content.ftl"/></#assign>
44
${templates.createFile(captured, "${item}.txt")}
5-
</#foreach>
5+
</#list>

0 commit comments

Comments
 (0)