diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateProperties.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateProperties.java index e0dfd5183aa..642959797b6 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateProperties.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateProperties.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2014 the original author or authors. + * Copyright 2012-2015 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,9 +16,6 @@ package org.springframework.boot.autoconfigure.groovy.template; -import java.util.HashMap; -import java.util.Map; - import org.springframework.boot.autoconfigure.template.AbstractViewResolverProperties; import org.springframework.boot.context.properties.ConfigurationProperties; @@ -45,11 +42,6 @@ public class GroovyTemplateProperties extends AbstractViewResolverProperties { */ private String suffix = DEFAULT_SUFFIX; - /** - * Configuration to pass to TemplateConfiguration. - */ - private Map configuration = new HashMap(); - public String getPrefix() { return this.prefix; } @@ -66,12 +58,4 @@ public class GroovyTemplateProperties extends AbstractViewResolverProperties { this.suffix = suffix; } - public void setConfiguration(Map configuration) { - this.configuration = configuration; - } - - public Map getConfiguration() { - return this.configuration; - } - }