removed unused field from UI config bean
parent
4dc31cdfbd
commit
705ac9879c
|
@ -28,7 +28,6 @@ import java.util.Set;
|
||||||
public class UIConfiguration {
|
public class UIConfiguration {
|
||||||
|
|
||||||
private Set<String> jsFiles;
|
private Set<String> jsFiles;
|
||||||
private Set<String> templateFiles;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the jsFiles
|
* @return the jsFiles
|
||||||
|
@ -42,17 +41,5 @@ public class UIConfiguration {
|
||||||
public void setJsFiles(Set<String> jsFiles) {
|
public void setJsFiles(Set<String> jsFiles) {
|
||||||
this.jsFiles = jsFiles;
|
this.jsFiles = jsFiles;
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* @return the templateFiles
|
|
||||||
*/
|
|
||||||
public Set<String> getTemplateFiles() {
|
|
||||||
return templateFiles;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @param templateFiles the templateFiles to set
|
|
||||||
*/
|
|
||||||
public void setTemplateFiles(Set<String> templateFiles) {
|
|
||||||
this.templateFiles = templateFiles;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,11 +46,6 @@
|
||||||
</set>
|
</set>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
<property name="templateFiles">
|
|
||||||
<set>
|
|
||||||
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -46,12 +46,6 @@
|
||||||
<value>resources/js/policy.js</value>
|
<value>resources/js/policy.js</value>
|
||||||
</set>
|
</set>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
<property name="templateFiles">
|
|
||||||
<set>
|
|
||||||
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue