Skip to content

Commit 30df909

Browse files
committed
Merge branch '1.2.x'
2 parents 5ccf495 + 326bdf2 commit 30df909

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateProperties.java

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 the original author or authors.
2+
* Copyright 2012-2015 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,9 +16,6 @@
1616

1717
package org.springframework.boot.autoconfigure.groovy.template;
1818

19-
import java.util.HashMap;
20-
import java.util.Map;
21-
2219
import org.springframework.boot.autoconfigure.template.AbstractViewResolverProperties;
2320
import org.springframework.boot.context.properties.ConfigurationProperties;
2421

@@ -45,11 +42,6 @@ public class GroovyTemplateProperties extends AbstractViewResolverProperties {
4542
*/
4643
private String suffix = DEFAULT_SUFFIX;
4744

48-
/**
49-
* Configuration to pass to TemplateConfiguration.
50-
*/
51-
private Map<String, Object> configuration = new HashMap<String, Object>();
52-
5345
public String getPrefix() {
5446
return this.prefix;
5547
}
@@ -66,12 +58,4 @@ public void setSuffix(String suffix) {
6658
this.suffix = suffix;
6759
}
6860

69-
public void setConfiguration(Map<String, Object> configuration) {
70-
this.configuration = configuration;
71-
}
72-
73-
public Map<String, Object> getConfiguration() {
74-
return this.configuration;
75-
}
76-
7761
}

0 commit comments

Comments
 (0)