renamed template method to not rely on overloading

added test for scheduler service bean
This commit is contained in:
Sheldan
2020-04-08 13:26:37 +02:00
parent da28831ff9
commit e13762fa02
12 changed files with 179 additions and 11 deletions

View File

@@ -94,7 +94,7 @@ public class Help implements Command {
if(templateKey == null || !commandConfiguration.isTemplated()) {
return defaultText;
} else {
return templateService.renderTemplate(templateKey, null);
return templateService.renderTemplateWithMap(templateKey, null);
}
}