16 lines
322 B
Java
16 lines
322 B
Java
|
|
|
|
package extention;
|
|
|
|
import freemarker.template.Configuration;
|
|
import freemarker.template.Version;
|
|
|
|
public class AlarmTplConfiguration extends Configuration {
|
|
public AlarmTplConfiguration() {
|
|
}
|
|
|
|
public AlarmTplConfiguration(Version incompatibleImprovements) {
|
|
super(incompatibleImprovements);
|
|
}
|
|
}
|