HashMap<String, String> map = (HashMap<String, String>) objs[0];
String templateName = ((String) objs[1]).trim();
String cacheKey = templateName + objs[2];
Map<String, String> templateCallsCache = null;
if (cacheKey.length() < 256 && fWikiModel instanceof IConfiguration) {
IConfiguration config = (IConfiguration) fWikiModel;
templateCallsCache = config.getTemplateCallsCache();
if (templateCallsCache != null) {
String value = templateCallsCache.get(cacheKey);
if (value != null) {
// System.out.println("Cache key: " + cacheKey);
writer.append(value);