Details
Description
With the latest 1.3 download, some templates are failing (with
ReferenceExceptions) that were working perfectly under 1.2, an example of which
follows.
I have a method in a utility class which is placed onto the context;
public static String createMethodLine(String visibility, String methodName,
List params, Map colData, String returnType, boolean throwsSQLException,
boolean retrieveByParams);
In the template, I have the following;
$TGUtils.createMethodLine("public", "retrieve", $index.getIndexColumns(),
$tableData.get($tableName).getColumnData(), "boolean", false, true)
where $index.getIndexColumns() is a java.util.ArrayList and $tableData.get
($tableName).getColumnData() is a java.util.TreeMap.
Works under 1.2 but throws ReferenceExceptions under 1.3