James Moger
2013-09-30 699e71e76b15081baf746c6ce9c9144f7e5f1ff9
src/main/java/com/gitblit/wicket/freemarker/Freemarker.java
@@ -27,18 +27,18 @@
public class Freemarker {
   private static final Configuration fm;
   static {
      fm = new Configuration();
      fm.setObjectWrapper(new DefaultObjectWrapper());
      fm.setOutputEncoding("UTF-8");
      fm.setClassForTemplateLoading(Freemarker.class, "templates");
   }
   public static Template getTemplate(String name) throws IOException {
      return fm.getTemplate(name);
   }
   public static void evaluate(Template template, Map<String, Object> values, Writer out) throws TemplateException, IOException {
      template.process(values, out);
   }