diff --git a/src/clj_pebble/core.clj b/src/clj_pebble/core.clj index 0f7b510..816b5c6 100644 --- a/src/clj_pebble/core.clj +++ b/src/clj_pebble/core.clj @@ -2,9 +2,9 @@ (:import (java.io StringWriter) (java.util Map) (com.mitchellbosecke.pebble PebbleEngine) - (com.mitchellbosecke.pebble.loader DelegatingLoader ClasspathLoader FileLoader StringLoader) + (com.mitchellbosecke.pebble.loader ClasspathLoader FileLoader StringLoader) (com.mitchellbosecke.pebble.template PebbleTemplate) - (com.mitchellbosecke.pebble.extension Function AbstractExtension Extension)) + (com.mitchellbosecke.pebble.extension Function)) (:require [clojure.walk :refer [stringify-keys]])) (defonce classpath-loader (ClasspathLoader.))