Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Bug
-
2.3.25-incubating
-
None
Description
package test; import java.util.HashMap; import java.util.Map; public class MapFactory { public static Map<String, String> create() { Map<String, String> map = new HashMap<>(); map.put("mykey", "myvalue"); return map; } }
<#list statics['test.MapFactory'].create() as k,v> ${k} </#list>
I am expecting "mykey" only, but it render others like "getClass values .." also.