295296297298299300301302303304305306307
* @since 2.2.0 */ public static void evaluateBody(TemplateDirectiveBody body) throws TemplateException, IOException { if (body != null) { NullWriter writer = new NullWriter(); try { body.render(writer); } finally { writer.close(); } } }